Uses of Class
eneter.messaging.messagingsystems.messagingsystembase.ResponseReceiverEventArgs

Packages that use ResponseReceiverEventArgs
eneter.messaging.endpoints.rpc Remote Procedure Calls (RPC). 
eneter.messaging.endpoints.stringmessages Sending and receiving text messages. 
eneter.messaging.endpoints.typedmessages Sending and receiving typed messages. 
eneter.messaging.messagingsystems.messagingsystembase Messaging system interfaces. 
eneter.messaging.nodes.channelwrapper Reducing communication via multiple channels into one channel. 
eneter.messaging.nodes.loadbalancer Distributing the workload across a farm of receivers. 
 

Uses of ResponseReceiverEventArgs in eneter.messaging.endpoints.rpc
 

Methods in eneter.messaging.endpoints.rpc that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> IRpcService.responseReceiverConnected()
          Event raised when a client connected the service.
 Event<ResponseReceiverEventArgs> IRpcService.responseReceiverDisconnected()
          Event raised when a client got disconnected from the service.
 

Uses of ResponseReceiverEventArgs in eneter.messaging.endpoints.stringmessages
 

Methods in eneter.messaging.endpoints.stringmessages that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> IDuplexStringMessageReceiver.responseReceiverConnected()
          The event is raised when a duplex string message sender opened the connection.
 Event<ResponseReceiverEventArgs> IDuplexStringMessageReceiver.responseReceiverDisconnected()
          The event is raised when a duplex string message sender closed the connection.
 

Uses of ResponseReceiverEventArgs in eneter.messaging.endpoints.typedmessages
 

Methods in eneter.messaging.endpoints.typedmessages that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> IMultiTypedMessageReceiver.responseReceiverConnected()
          Raised when a new client is connected.
 Event<ResponseReceiverEventArgs> IDuplexTypedMessageReceiver.responseReceiverConnected()
          Raised when a new client is connected.
 Event<ResponseReceiverEventArgs> IMultiTypedMessageReceiver.responseReceiverDisconnected()
          Raised when a client closed the connection.
 Event<ResponseReceiverEventArgs> IDuplexTypedMessageReceiver.responseReceiverDisconnected()
          Raised when a client closed the connection.
 

Uses of ResponseReceiverEventArgs in eneter.messaging.messagingsystems.messagingsystembase
 

Methods in eneter.messaging.messagingsystems.messagingsystembase that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> IDuplexInputChannel.responseReceiverConnected()
          The event is raised when an output channel opened the connection.
 Event<ResponseReceiverEventArgs> IDuplexInputChannel.responseReceiverDisconnected()
          The event is raised when an output channel closed the connection.
 

Uses of ResponseReceiverEventArgs in eneter.messaging.nodes.channelwrapper
 

Methods in eneter.messaging.nodes.channelwrapper that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> IDuplexChannelUnwrapper.responseReceiverConnected()
          The event is invoked when the duplex channel wrapper opened the connection with this unwrapper via its duplex output channel.
 Event<ResponseReceiverEventArgs> IDuplexChannelUnwrapper.responseReceiverDisconnected()
          The event is invoked when the duplex channel wrapper closed the connection with this unwrapper via its duplex output channel.
 

Uses of ResponseReceiverEventArgs in eneter.messaging.nodes.loadbalancer
 

Methods in eneter.messaging.nodes.loadbalancer that return types with arguments of type ResponseReceiverEventArgs
 Event<ResponseReceiverEventArgs> ILoadBalancer.responseReceiverConnected()
          The event is invoked when the client sending requests was connected to the load balancer.
 Event<ResponseReceiverEventArgs> ILoadBalancer.responseReceiverDisconnected()
          The event is invoked when the client sending requests was disconnected from the load balanacer.