C# Class StompNet.IO.Stomp12Client

STOMP 1.2 Client. ATTENTION: This is a disposable class.
Inheritance: StompClient
Mostra file Open project: krlito/StompNet

Public Methods

Method Description
Stomp12Client ( Stream inStream, Stream outStream, System.TimeSpan retryInterval = null, bool useRandomNumberGenerator = false ) : System

Constructor of a client for STOMP 1.2.

Stomp12Client ( Stream stream, System.TimeSpan retryInterval = null, bool useRandomNumberGenerator = false ) : System

Constructor of a client for STOMP 1.2.

Method Details

Stomp12Client() public method

Constructor of a client for STOMP 1.2.
public Stomp12Client ( Stream inStream, Stream outStream, System.TimeSpan retryInterval = null, bool useRandomNumberGenerator = false ) : System
inStream Stream Stream for incoming data from STOMP service.
outStream Stream Stream for outgoing data to STOMP service.
retryInterval System.TimeSpan When sending messages that requires receipt confirmation, /// this interval specifies how much time to wait before sending the frame again if /// no receipt is received.
useRandomNumberGenerator bool Flag to indicate random numbers must /// be used when creating sequence numbers for receipts, subscriptions and transactions
return System

Stomp12Client() public method

Constructor of a client for STOMP 1.2.
public Stomp12Client ( Stream stream, System.TimeSpan retryInterval = null, bool useRandomNumberGenerator = false ) : System
stream Stream Stream for incoming/outgoing data from/to STOMP service.
retryInterval System.TimeSpan When sending messages that require receipt confirmation, /// this interval specifies how much time to wait before sending the frame again if /// no receipt is received.
useRandomNumberGenerator bool Flag to indicate random numbers must /// be used when creating sequence numbers for receipts, subscriptions and transactions
return System