C# Class NServiceBus.PendingTransportOperations

Represents the currently pending transport operations. The transport operations that are collected here will be dispatched in the batched dispatch stage of the pipeline.
This class is threadsafe.
Show file Open project: Particular/NServiceBus Class Usage Examples

Public Methods

Method Description
Add ( TransportOperation transportOperation ) : void

Adds a transport operation.

AddRange ( TransportOperation transportOperations ) : void

Adds a range of transport operations.

Method Details

Add() public method

Adds a transport operation.
public Add ( TransportOperation transportOperation ) : void
transportOperation TransportOperation The transport operation to be added.
return void

AddRange() public method

Adds a range of transport operations.
public AddRange ( TransportOperation transportOperations ) : void
transportOperations TransportOperation The transport operations to be added.
return void