Method | Description | |
---|---|---|
CreateQueue ( string queueName ) : bool |
Creates a message queue with the specified name.
|
|
Dispose ( ) : void |
Disposes the InMemoryMessageStore.
|
|
GetMessage ( string queueName, ulong sequence ) : Message |
Gets the message from the specified message queue with the specified sequence number.
|
|
GetMessageCount ( string queueName ) : ulong |
Gets the count of messages in the specified message queue.
|
|
GetNextSequence ( string queueName ) : ulong |
Get the next sequence from the specified message queue.
|
|
GetQueues ( ) : IList |
Gets the available message queues.
|
|
InMemoryMessageStore ( ) : System |
Iniitalizes a new instance of InMemoryMessageStore class.
|
|
QueueExists ( string queueName ) : bool |
Checks whether a message queue with the specified name exists.
|
|
StoreMessage ( string queueName, Message message ) : void |
Stores the specified message in the specified message queue.
|
public CreateQueue ( string queueName ) : bool | ||
queueName | string | Name of the message queue to create. |
return | bool |
public GetMessage ( string queueName, ulong sequence ) : Message | ||
queueName | string | Name of the message queue. |
sequence | ulong | Sequence of the message. |
return | Message |
public GetMessageCount ( string queueName ) : ulong | ||
queueName | string | Name of the message queue to get the message count from. |
return | ulong |
public GetNextSequence ( string queueName ) : ulong | ||
queueName | string | Name of the message queue to get the next sequence from. |
return | ulong |
public QueueExists ( string queueName ) : bool | ||
queueName | string | Name of the message queue to check. |
return | bool |
public StoreMessage ( string queueName, Message message ) : void | ||
queueName | string | Name of the message queue. |
message | Message | Message to store. |
return | void |