I'm currently using Spring Batch and want to use remote chunking.
I use chunk oriented processing that use Item Reader, Item Processor and Item Writer and want to implement skip.
I read in this question that told me to create SkippableTasklet
but I kinda confuse how to implement protected abstract void run(JobParameters jobParameters) throws Exception;
How can I implement skip in this remote chunking implementation?