TypedInputAdapter<TEvent, TPayload>.ReleaseEvent Method (TEvent)

 

Releases the memory occupied by an event.

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

Syntax

public void ReleaseEvent(
    ref TEvent eventInstance
)
public:
virtual void ReleaseEvent(
    TEvent% eventInstance
) sealed
abstract ReleaseEvent : 
        eventInstance:'TEvent byref -> unit
override ReleaseEvent : 
        eventInstance:'TEvent byref -> unit
Public Sub ReleaseEvent (
    ByRef eventInstance As TEvent
)

Parameters

  • eventInstance
    Type: TEvent

    Event instance

Type Parameters

  • TEvent
    The type of the event produced by this adapter, constrained to TypedEvent<TPayload> objects.

See Also

TypedInputAdapter<TEvent, TPayload> Class
Microsoft.ComplexEventProcessing.Adapters Namespace

Return to top