Add TryClose to space interface

This commit is contained in:
mcrakhman 2023-03-09 23:11:20 +01:00
parent 0c79741216
commit 067ad8cf16
No known key found for this signature in database
GPG Key ID: DED12CFEF5B8396B

View File

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