| 111 | } |
| 112 | |
| 113 | type leaveGroupRequestV0 struct { |
| 114 | // GroupID holds the unique group identifier |
| 115 | GroupID string |
| 116 | |
| 117 | // MemberID assigned by the group coordinator or the zero string if joining |
| 118 | // for the first time. |
| 119 | MemberID string |
| 120 | } |
| 121 | |
| 122 | func (t leaveGroupRequestV0) size() int32 { |
| 123 | return sizeofString(t.GroupID) + sizeofString(t.MemberID) |
nothing calls this directly
no outgoing calls
no test coverage detected