Click or drag to resize
EventQueue Class
Returns the number of definitions of events that can be published by this Service.
Inheritance Hierarchy
SystemObject
  Bloomberglp.BlpapiEventQueue

Namespace:  Bloomberglp.Blpapi
Assembly:  Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.13.2.1
Syntax
public class EventQueue

The EventQueue type exposes the following members.

Constructors
  NameDescription
Public methodEventQueue
Constructs an empty event queue.
Top
Methods
  NameDescription
Public methodNextEvent
Retrieves the next event available for processing on this EventQueue.
Public methodNextEvent(Int64)
Retrieves the next event available for processing on this EventQueue.
Public methodPurge
Purge all events from this Event Queue and cancel all Requests that this Event Queue is associated with.
Public methodTryNextEvent
Tries to retrieve the next event available for processing on this EventQueue.
Top
Remarks
An Request can be associated with an EventQueue by passing a valid instance of the EventQueue class to the Session.SendRequest and Session.SendAuthorizationRequest(Request, UserHandle, EventQueue, CorrelationID, String) sendAuthorizationRequest} methods. All responses to the Request are now delivered to this EventQueue allowing the application to block for Responses for the Request. Note that a single EventQueue can be used for receiving Response Events for many requests.
See Also