Method: Smpp::Base#unbind
- Defined in:
- lib/smpp/base.rb
#unbind ⇒ Object
EventMachine::Connection#unbind Invoked by EM when connection is closed. Delegates should consider breaking the event loop and reconnect when they receive this callback.
124 125 126 127 128 |
# File 'lib/smpp/base.rb', line 124 def unbind if @delegate.respond_to?(:unbound) @delegate.unbound(self) end end |