IQueueTPoll Method (Int64, TimeUnit)Hazelcast .Net Client Class Library
Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.6.2.0
Syntax

T Poll(
	long timeout,
	TimeUnit unit
)

Parameters

timeout
Type: SystemInt64
how long to wait before giving up, in units of unit
unit
Type: Hazelcast.CoreTimeUnit
a TimeUnit determining how to interpret the timeout parameter

Return Value

Type: T
the head of this queue, or null if the specified waiting time elapses before an element is available
Remarks

Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.
See Also

Reference