Table of Contents

Class Future<V>

Namespace
Java.Util.Concurrent
Assembly
MASES.JNet.dll
public class Future<V> : JVMBridgeBase<Future<V>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, IFuture<V>

Type Parameters

V
Inheritance
Future<V>
Implements
Inherited Members
Extension Methods

Constructors

Future()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

[Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Future()

Future(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

[Obsolete("Future class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Future(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements Closeable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Cancel(bool)

public bool Cancel(bool arg0)

Parameters

arg0 bool

bool

Returns

bool

bool

Get()

public V Get()

Returns

V

V

Exceptions

InterruptedException
ExecutionException

Get(long, TimeUnit)

public V Get(long arg0, TimeUnit arg1)

Parameters

arg0 long

long

arg1 TimeUnit

TimeUnit

Returns

V

V

Exceptions

InterruptedException
ExecutionException
TimeoutException

GetAsync(CancellationToken)

Executes Get() in async/await fashion

public Task<V> GetAsync(CancellationToken token = default)

Parameters

token CancellationToken

The optional CancellationToken can be passed

Returns

Task<V>

The Task<TResult> of the async pattern

IsCancelled()

public bool IsCancelled()

Returns

bool

bool

IsDone()

public bool IsDone()

Returns

bool

bool

Operators

implicit operator Future(Future<V>)

Converter from Future<V> to Future

public static implicit operator Future(Future<V> t)

Parameters

t Future<V>

Returns

Future