Interface ICompletableWithResult<T>
An async/deferred operation that can also be completed and provide a result synchronously.
Inherited Members
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.