Class: MessagePack::RPC::UDPTransport
- Inherits:
-
Object
- Object
- MessagePack::RPC::UDPTransport
- Defined in:
- lib/msgpack/rpc/transport/udp.rb
Defined Under Namespace
Classes: BasicSocket
Instance Method Summary collapse
-
#build_transport(session, address) ⇒ Object
Transport interface.
-
#initialize ⇒ UDPTransport
constructor
A new instance of UDPTransport.
Constructor Details
#initialize ⇒ UDPTransport
Returns a new instance of UDPTransport.
23 24 |
# File 'lib/msgpack/rpc/transport/udp.rb', line 23 def initialize end |
Instance Method Details
#build_transport(session, address) ⇒ Object
Transport interface
27 28 29 |
# File 'lib/msgpack/rpc/transport/udp.rb', line 27 def build_transport(session, address) UDPClientTransport.new(session, address) end |