Show / Hide Table of Contents

Interface ICompletable

An async/deferred operation that can also be completed synchronously.

Namespace: OpenServiceBroker
Assembly: OpenServiceBroker.Model.dll
Syntax
public interface ICompletable

Properties

Completed

Indicates whether this operation has already been completed synchronously and therefore requires no polling.

Declaration
bool Completed { get; set; }
Property Value
Type Description
Boolean
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