Last active
November 19, 2019 19:57
-
-
Save sohangp/8bf3d3753e5a9de64b09b6794ba26585 to your computer and use it in GitHub Desktop.
Creating the EmbeddedEngine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private CDCListener(Configuration studentConnector, StudentService studentService) { | |
this.engine = EmbeddedEngine | |
.create() | |
.using(studentConnector) | |
.notifying(this::handleEvent).build(); | |
this.studentService = studentService; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment