Method
BeginGroup
(ctx context.Context, msg proto.Message, id uint64)
Source from the content-addressed store, hash-verified
| 50 | } |
| 51 | |
| 52 | func (d *decoder) BeginGroup(ctx context.Context, msg proto.Message, id uint64) error { |
| 53 | obj, err := d.decode(ctx, msg) |
| 54 | if err != nil { |
| 55 | return err |
| 56 | } |
| 57 | d.groups[id] = obj |
| 58 | return nil |
| 59 | } |
| 60 | |
| 61 | func (d *decoder) BeginChildGroup(ctx context.Context, msg proto.Message, id, parentID uint64) error { |
| 62 | obj, err := d.decode(ctx, msg) |
Callers
nothing calls this directly
Tested by
no test coverage detected