C# Class Bus, EzBus

Exibir arquivo Open project: Zapote/EzBus Class Usage Examples

Public Methods

Method Description
Publish ( object message ) : void
PublishAsync ( object message ) : Task,
Send ( object message ) : void
Send ( string destination, object message ) : void
SendAsync ( object message ) : Task,
SendAsync ( string destination, object message ) : Task,
Start ( ) : void

Private Methods

Method Description
Bus ( ) : System.Threading.Tasks
ConfigureLogging ( ) : void

Method Details

Publish() public static method

public static Publish ( object message ) : void
message object
return void

PublishAsync() public static method

public static PublishAsync ( object message ) : Task,
message object
return Task,

Send() public static method

public static Send ( object message ) : void
message object
return void

Send() public static method

public static Send ( string destination, object message ) : void
destination string
message object
return void

SendAsync() public static method

public static SendAsync ( object message ) : Task,
message object
return Task,

SendAsync() public static method

public static SendAsync ( string destination, object message ) : Task,
destination string
message object
return Task,

Start() public static method

public static Start ( ) : void
return void