EdgeOutputAdapter.Dequeue Method (EdgeEvent)

 

Dequeues events from the stream associated with this adapter.

Namespace:   Microsoft.ComplexEventProcessing.Adapters
Assembly:  Microsoft.ComplexEventProcessing.Adapters (in Microsoft.ComplexEventProcessing.Adapters.dll)

Syntax

public DequeueOperationResult Dequeue(
    out EdgeEvent eventInstance
)
public:
virtual DequeueOperationResult Dequeue(
    [OutAttribute] EdgeEvent^% eventInstance
) sealed
abstract Dequeue : 
        eventInstance:EdgeEvent byref -> DequeueOperationResult
override Dequeue : 
        eventInstance:EdgeEvent byref -> DequeueOperationResult
Public Function Dequeue (
    <OutAttribute> ByRef eventInstance As EdgeEvent
) As DequeueOperationResult

Parameters

Return Value

Type: Microsoft.ComplexEventProcessing.Adapters.DequeueOperationResult

DequeueOperationResult.Success if the operation succeeded.

DequeueOperationResult.Empty if the operation did not succeed and the adapter needs to wait with further Dequeue calls.

See Also

EdgeOutputAdapter Class
Microsoft.ComplexEventProcessing.Adapters Namespace

Return to top