IEventQueueNextEvent Method (Int64) |
Retrieves the next
Event available for processing.
If no event is available immediately, wait for timeoutMillis
milliseconds for an event to arrive. If no event is received before the
timeout expires returns a TIMEOUT event.
If the timeout is specified as 0 then wait for an infinite amount
of time for an event to be received.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.24.2.1
Syntax Event NextEvent(
long timeoutMillis
)
Function NextEvent (
timeoutMillis As Long
) As Event
Event^ NextEvent(
long long timeoutMillis
)
abstract NextEvent :
timeoutMillis : int64 -> Event
Parameters
- timeoutMillis
- Type: SystemInt64
A timeout in milliseconds to wait for an event to be available.
Return Value
Type:
Event
The next event available on this session or a
TIMEOUT event in case of a timeout.
See Also