spring-framework / org.springframework.jca.cci.object / SimpleRecordOperation / execute

execute

@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.

Parameters

inputRecord - the input record

Exceptions

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.

Parameters

inputRecord - the input record

outputRecord - the output record

Exceptions

DataAccessException - if there is any problem

See Also
javax.resource.cci.Interaction#execute(javax.resource.cci.InteractionSpec, Record, Record)