Click or drag to resize

IScheduledFutureT Interface

[Missing <summary> documentation for "T:com.espertech.esper.compat.concurrency.IScheduledFuture`1"]

Namespace:  com.espertech.esper.compat.concurrency
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public interface IScheduledFuture<T> : IFuture<T>

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:com.espertech.esper.compat.concurrency.IScheduledFuture`1"]

The IScheduledFutureT type exposes the following members.

Properties
Methods
  NameDescription
Public methodCancel
Attempts to cancel the future execution.
(Inherited from IFutureT.)
Public methodGet
Gets the value. If a value is not available this method throw a InvalidOperationException.
(Inherited from IFutureT.)
Public methodGetValue(TimeSpan)
Gets the value. If a value is not available before the timeout expires, a TimeoutException will be thrown.
(Inherited from IFutureT.)
Public methodGetValue(Int32, TimeUnit) (Inherited from IFutureT.)
Public methodGetValueOrDefault
Gets the result value from the execution.
(Inherited from IFutureT.)
Public methodWait
Waits for execution of the future to complete up to the allotted amount of time.
(Inherited from IFutureT.)
Top
See Also