Created
March 22, 2021 21:31
-
-
Save jchapuis/4dc2d0db8499dae79f680e6561b8f336 to your computer and use it in GitHub Desktop.
akka-dsl
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
builder | |
.startSystemDependent(SomeEtcdService()) | |
.thenStartHttp( | |
HttpServiceDefinition( | |
new AkkaControllers().routes, | |
serverConfig.host, | |
serverConfig.port, | |
serverConfig.hardDeadline, | |
serverConfig.unbindingDelay | |
) | |
) | |
.thenStartClusterDependent(SomeEntityService()) | |
.thenStartClusterDependent(SomeKafkaConsumerService()) | |
.complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment