@Nullable open fun execute(inputRecord: Record): Record
Execute the CCI interaction encapsulated by this operation object.
This method will call CCI's Interaction.execute variant that returns an output Record.
inputRecord - the input record
DataAccessException - if there is any problem
Return
the output record
See Also
javax.resource.cci.Interaction#execute(javax.resource.cci.InteractionSpec, Record)
open fun execute(inputRecord: Record, outputRecord: Record): Unit
Execute the CCI interaction encapsulated by this operation object.
This method will call CCI's Interaction.execute variant with a passed-in output Record.
inputRecord - the input record
outputRecord - the output record
DataAccessException - if there is any problem
See Also
javax.resource.cci.Interaction#execute(javax.resource.cci.InteractionSpec, Record, Record)