IsClosed returns whether the session has been closed.
()
| 73 | |
| 74 | // IsClosed returns whether the session has been closed. |
| 75 | func (s *Session) IsClosed() bool { |
| 76 | return s.closed.Load() |
| 77 | } |
| 78 | |
| 79 | // DCIDKey returns the DCID as a string key for map lookups. |
| 80 | func (s *Session) DCIDKey() string { |
no outgoing calls
no test coverage detected