Szerkesztés

Megosztás a következőn keresztül:


ResponseCompletionSourcePool.Return Method

Definition

Overloads

Return(ResponseCompletionSource)

Returns a value to the pool.

Return<T>(ResponseCompletionSource<T>)

Returns a value to the pool.

Return(ResponseCompletionSource)

Returns a value to the pool.

public static void Return (Orleans.Serialization.Invocation.ResponseCompletionSource obj);
static member Return : Orleans.Serialization.Invocation.ResponseCompletionSource -> unit
Public Shared Sub Return (obj As ResponseCompletionSource)

Parameters

obj
ResponseCompletionSource

The value to return to the pool

Applies to

Return<T>(ResponseCompletionSource<T>)

Returns a value to the pool.

public static void Return<T> (Orleans.Serialization.Invocation.ResponseCompletionSource<T> obj);
static member Return : Orleans.Serialization.Invocation.ResponseCompletionSource<'T> -> unit
Public Shared Sub Return(Of T) (obj As ResponseCompletionSource(Of T))

Type Parameters

T

The underlying result type.

Parameters

obj
ResponseCompletionSource<T>

The value to return to the pool

Applies to