IRtConnectionTransmitAsync Method

The Transmit method sends the data held by the supplied DataModel to the runtime system. This call is asynchronous. It will not wait for a reply, so it will not block the calling process. The called must supply a callback method, which is executed when the TransmitAsynch processing completes.

Namespace:  ABSuite.AccessLayer.Connector.Core
Assembly:  Unisys.ABSuite.AccessLayer.Connector.Core (in Unisys.ABSuite.AccessLayer.Connector.Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

Task<TransmissionObject> TransmitAsync(
	Object datamodel
)

Parameters

datamodel
Type: SystemObject
A DataModel object containing the data to be sent to the host system for a specific ispec transaction

Return Value

Type: TaskTransmissionObject
Task<TransmissionObject>.
Remarks

The TransmissionObject contains the results of the transaction - The TransmissionReturnCode will indicate the success or failure - The DataModel object will contain information about the response from the host system
See Also

Reference