We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is some logic which is similar for transactional sink tests (in modules snapshot-file-test, snapshot-jdbc-test and snapshot-jms-sink-test).
snapshot-file-test
snapshot-jdbc-test
snapshot-jms-sink-test
StreamSource<Integer> source = SourceBuilder .stream(NAME, procCtx -> new int[1]) .<Integer>fillBufferFn((ctx, buf) -> { buf.add(ctx[0]++); sleepMillis(SLEEP); }) .createSnapshotFn(ctx -> ctx[0]) .restoreSnapshotFn((ctx, state) -> ctx[0] = state.get(0)) .build();
JmsSinkVerifier
GeneratedFilesVerifier
JdbcSinkVerifier
It should be centralized.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is some logic which is similar for transactional sink tests (in modules
snapshot-file-test
,snapshot-jdbc-test
andsnapshot-jms-sink-test
).JmsSinkVerifier
,GeneratedFilesVerifier
andJdbcSinkVerifier
use the similar logic.It should be centralized.
The text was updated successfully, but these errors were encountered: