()
| 3752 | } |
| 3753 | |
| 3754 | func (t *Topic) isReadOnly() bool { |
| 3755 | return (atomic.LoadInt32(&t.status) & topicStatusReadOnly) != 0 |
| 3756 | } |
| 3757 | |
| 3758 | func (t *Topic) isLoaded() bool { |
| 3759 | return (atomic.LoadInt32(&t.status) & topicStatusLoaded) != 0 |
no outgoing calls
no test coverage detected