Added MQTT actor

This commit is contained in:
2026-07-19 01:45:49 +03:00
parent a004c1a97e
commit 9bfee2978e
5 changed files with 103 additions and 0 deletions
+17
View File
@@ -2,6 +2,8 @@
play.http.filters=controllers.filters.Filters
play.modules.enabled += "mqttClient.Module"
slick.dbs.default = {
profile = "slick.jdbc.PostgresProfile$"
db = {
@@ -26,5 +28,20 @@ pekko {
}
throughput = 1
}
mqtt-dispatcher {
type = Dispatcher
executor = "fork-join-executor"
fork-join-executor {
}
}
}
}
mqtt {
host = "localhost"
port = 1883
clientId = "neon-vertigo-api"
username = "artemis"
password = "artemis"
}