Closable is the interface for objects that can release its resources. v2ray:api:beta
| 6 | // |
| 7 | // v2ray:api:beta |
| 8 | type Closable interface { |
| 9 | // Close release all resources used by this object, including goroutines. |
| 10 | Close() error |
| 11 | } |
| 12 | |
| 13 | // Interruptible is an interface for objects that can be stopped before its completion. |
| 14 | // |
no outgoing calls
no test coverage detected