()
| 3756 | } |
| 3757 | |
| 3758 | func (t *Topic) isLoaded() bool { |
| 3759 | return (atomic.LoadInt32(&t.status) & topicStatusLoaded) != 0 |
| 3760 | } |
| 3761 | |
| 3762 | func (t *Topic) isDeleted() bool { |
| 3763 | return (atomic.LoadInt32(&t.status) & topicStatusMarkedDeleted) != 0 |
no outgoing calls
no test coverage detected