Sha256: 2ca4de85a2f4d9ffda19ecbdfdaaff9e4325c1851899ae441e037a3178355d57
Contents?: true
Size: 478 Bytes
Versions: 84
Compression:
Stored size: 478 Bytes
Contents
package org.embulk.exec; public enum TransactionStage { INPUT_BEGIN(1), FILTER_BEGIN(2), EXECUTOR_BEGIN(3), OUTPUT_BEGIN(4), RUN(5), OUTPUT_COMMIT(6), EXECUTOR_COMMIT(7), FILTER_COMMIT(8), INPUT_COMMIT(9), CLEANUP(10); private final int index; private TransactionStage(int index) { this.index = index; } public boolean isBefore(TransactionStage another) { return index < another.index; } }
Version data entries
84 entries across 84 versions & 1 rubygems