summaryrefslogtreecommitdiff
path: root/internal/clients/handlers/handler.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-13 08:48:13 +0200
committerPaul Buetow <paul@buetow.org>2026-03-13 08:48:13 +0200
commit4b15cf31f069bb47a47f3fced9322091997edf15 (patch)
tree2a4af63f9a9b76c86c7a9f4595c58c877953a31e /internal/clients/handlers/handler.go
parent8ac1d12f8261bce508c99be454ce27df9c1af0a9 (diff)
task 407: add client session transport
Diffstat (limited to 'internal/clients/handlers/handler.go')
-rw-r--r--internal/clients/handlers/handler.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/clients/handlers/handler.go b/internal/clients/handlers/handler.go
index aebebaa..cac78ad 100644
--- a/internal/clients/handlers/handler.go
+++ b/internal/clients/handlers/handler.go
@@ -16,4 +16,5 @@ type Handler interface {
Shutdown()
Done() <-chan struct{}
WaitForCapabilities(timeout time.Duration) bool
+ WaitForSessionAck(timeout time.Duration) (SessionAck, bool)
}