10.27.03

ITransactedSession.CreateFlow(FlowProperties, IEndpoint, ISubscription, EventHandler<MessageEventArgs>, EventHandler<FlowEventArgs>) Method

Creates a consumer flow IFlow on the given transacted session. This method calls CreateFlow(FlowProperties, IEndpoint, ISubscription, EventHandler<MessageEventArgs>, EventHandler<FlowEventArgs>, EndpointProperties) for with null endpointProperties, therefore it does not allow the user of this method to specify the EndpointProperties when binding and implicilty creating a non-durable endpoint.

Definition

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 10.27.0
C#
IFlow CreateFlow(
	FlowProperties flowProperties,
	IEndpoint endpoint,
	ISubscription subscription,
	EventHandler<MessageEventArgs> messageEventHandler,
	EventHandler<FlowEventArgs> flowEventHandler
)

Parameters

flowProperties  FlowProperties
endpoint  IEndpoint
subscription  ISubscription
messageEventHandler  EventHandler<MessageEventArgs>
flowEventHandler  EventHandler<FlowEventArgs>

Return Value

IFlow
Returns a consumer flow IFlow on the given transacted session

See Also