(ctx context.Context, entry NetworkChannelEntry)
| 86 | // NetworkChannelStore manages durable network channel metadata. |
| 87 | type NetworkChannelStore interface { |
| 88 | WriteNetworkChannel(ctx context.Context, entry NetworkChannelEntry) error |
| 89 | GetNetworkChannel(ctx context.Context, ref NetworkChannelRef) (NetworkChannelEntry, error) |
| 90 | ListNetworkChannels(ctx context.Context, query NetworkChannelQuery) ([]NetworkChannelEntry, error) |
| 91 | PatchNetworkChannel(ctx context.Context, ref NetworkChannelRef, patch NetworkChannelPatch) error |
no outgoing calls