Add TryClose to space interface

This commit is contained in:
mcrakhman 2023-03-09 23:11:20 +01:00 committed by Mikhail Iudin
parent 520f2cf470
commit 82828cba6f
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

View File

@ -106,6 +106,7 @@ type Space interface {
HandleMessage(ctx context.Context, msg HandleMessage) (err error)
TryClose() (close bool, err error)
Close() error
}