Home -> IRenderer -> CreateTransferBatch

Description

The CreateTransferBatch method constructs and returns a new object which implements the ITransferBatch interface.

Usage

ITransferBatch::unique_ptr CreateTransferBatch(ITransferBatch::StartTiming startTiming, ITransferBatch::EndTiming endTiming);

Argument list

startTiming [StartTiming]
Specifies the time when this transfer batch is requested to start processing after being submitted. The batch may begin processing later than this point, but it will not begin processing before this point.
endTiming [EndTiming]
Specifies the time when this transfer batch is requested to end processing after being submitted. The batch may finish processing earlier than this point, but it will finish by this point.

Return value

[ITransferBatch]
A freshly constructed ITransferBatch object, wrapped in a unique_ptr.

See also