Show / Hide Table of Contents

Interface ICompletableWithResult<T>

An async/deferred operation that can also be completed and provide a result synchronously.

Inherited Members
ICompletable.Completed
Namespace: OpenServiceBroker
Assembly: OpenServiceBroker.Model.dll
Syntax
public interface ICompletableWithResult<T> : ICompletable where T : class
Type Parameters
Name Description
T

Properties

Result

If Completed is true this holds the result of the operation.

Declaration
T Result { get; set; }
Property Value
Type Description
T
Remarks

This is not part of the Open Service Broker JSON representation. Instead it is communicated out of band via HTTP status codes.

Extension Methods

Completable.Complete<TCompletable>(TCompletable)
CompletableWithResult.Complete<TCompletable, TResult>(TCompletable, TResult)
In This Article
Back to top Copyright Bastian Eicher