메소드 | 설명 | |
---|---|---|
CloseChannel ( string name ) : void |
Closes a channel, removing it from the message broker.
|
|
DisableChannel ( string name ) : void |
Disables a channel, which will block messages from being passed.
|
|
Dispose ( bool disposing ) : void |
Releases all resources held by the object.
|
|
EnableChannel ( string name ) : void |
Enables a channel, causing it to pass messages through as they occur.
|
|
GetChannel ( string name ) : IMessageChannel |
Returns a channel with the specified name, creating it first if necessary.
|
|
StandardMessageBroker ( IKernel kernel ) : System |
Initializes a new instance of the StandardMessageBroker class.
|
메소드 | 설명 | |
---|---|---|
ThrowIfChannelDoesNotExist ( string name ) : void |
public CloseChannel ( string name ) : void | ||
name | string | The name of the channel to close. |
리턴 | void |
public DisableChannel ( string name ) : void | ||
name | string | The name of the channel to disable. |
리턴 | void |
public Dispose ( bool disposing ) : void | ||
disposing | bool | |
리턴 | void |
public EnableChannel ( string name ) : void | ||
name | string | The name of the channel to enable. |
리턴 | void |
public GetChannel ( string name ) : IMessageChannel | ||
name | string | The name of the channel to create or retrieve. |
리턴 | IMessageChannel |
public StandardMessageBroker ( IKernel kernel ) : System | ||
kernel | IKernel | The kernel. |
리턴 | System |