Interface MyBatisProcessingStrategy
-
- All Known Implementing Classes:
DefaultMyBatisProcessingStrategy
public interface MyBatisProcessingStrategy
Processing strategy for dealing with MyBatis when consuming.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
commit(MyBatisEndpoint endpoint, org.apache.camel.Exchange exchange, Object data, String consumeStatements)
Commit callback if there are a statements to be run after processing.List<?>
poll(MyBatisConsumer consumer, MyBatisEndpoint endpoint)
Called when record is being queried.
-
-
-
Method Detail
-
poll
List<?> poll(MyBatisConsumer consumer, MyBatisEndpoint endpoint) throws Exception
Called when record is being queried.
-
commit
void commit(MyBatisEndpoint endpoint, org.apache.camel.Exchange exchange, Object data, String consumeStatements) throws Exception
Commit callback if there are a statements to be run after processing.- Parameters:
endpoint
- the endpointexchange
- The exchange after it has been processeddata
- The original data delivered to the routeconsumeStatements
- Name of the statement(s) to run, will use SQL update. Use comma to provide multiple statements to run.- Throws:
Exception
- can be thrown in case of error
-
-