UID returns uid that bind to current session
()
| 110 | |
| 111 | // UID returns uid that bind to current session |
| 112 | func (s *Session) UID() int64 { |
| 113 | return atomic.LoadInt64(&s.uid) |
| 114 | } |
| 115 | |
| 116 | // LastMid returns the last message id |
| 117 | func (s *Session) LastMid() uint64 { |
no outgoing calls