IQueueTOffer Method (T, Int64, TimeUnit)Hazelcast .Net Client Class Library
Inserts the specified element into this queue, waiting up to the specified wait time if necessary for space to become available.

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

bool Offer(
	T e,
	long timeout,
	TimeUnit unit
)

Parameters

e
Type: T
the element to add
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: Boolean
true if successful, or false if the specified waiting time elapses before space is available
Exceptions

ExceptionCondition
Exceptionif interrupted while waiting
Remarks

Inserts the specified element into this queue, waiting up to the specified wait time if necessary for space to become available.
See Also

Reference