C# Class Ninject.Extensions.MessageBroker.Model.Subscriptions.StandardMessageSubscriptionFactory

The stock definition of a IMessageSubscriptionFactory.
Inheritance: Ninject.Components.NinjectComponent, IMessageSubscriptionFactory
Mostrar archivo Open project: ninject/Ninject.Extensions.MessageBroker

Public Methods

Method Description
Create ( IMessageChannel channel, object subscriber, MethodInjector injector, DeliveryThread deliveryThread ) : IMessageSubscription

Creates a subscription for the specified channel.

Method Details

Create() public method

Creates a subscription for the specified channel.
public Create ( IMessageChannel channel, object subscriber, MethodInjector injector, DeliveryThread deliveryThread ) : IMessageSubscription
channel IMessageChannel The channel that will be subscribed to.
subscriber object The object that will receive events from the channel.
injector MethodInjector The injector that will be called to trigger the event handler.
deliveryThread DeliveryThread The thread on which the subscription will be delivered.
return IMessageSubscription