Click or drag to resize
SessionStop Method (AbstractSessionStopOption)
Stops the operation of this session.

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.25.11.64-experimental+d519cd77c15f00eb425bcde0dbe3273921f5910b
Syntax
public override void Stop(
	AbstractSessionStopOption stopOption
)

Parameters

stopOption
Type: Bloomberglp.BlpapiAbstractSessionStopOption

Implements

IAbstractSessionStop(AbstractSessionStopOption)
IAbstractSessionStop(AbstractSessionStopOption)
Remarks

If the specified stopOption is SYNC, then this call blocks until all events relating to this session which are currently being processed have returned from an application supplied EventHandler objects. Once this call returns no further callbacks to EventHandlers will occur. If a synchronous Stop(AbstractSessionStopOption) is called from within an EventHandler callback, the behavior is undefined and may result in a deadlock.

If the specified stopOption is ASYNC then the stop call returns immediately and events may still be being processed in user specified EventHandler objects.

See Also