package streaming

import "github.com/containerd/containerd/pkg/streaming"

Index

Types

type Stream

type Stream interface {
	// Send sends the object on the stream
	Send(typeurl.Any) error

	// Recv receives an object on the stream
	Recv() (typeurl.Any, error)

	// Close closes the stream
	Close() error
}

type StreamCreator

type StreamCreator interface {
	Create(context.Context, string) (Stream, error)
}

type StreamGetter

type StreamGetter interface {
	Get(context.Context, string) (Stream, error)
}

type StreamManager

type StreamManager interface {
	StreamGetter
	Register(context.Context, string, Stream) error
}

Source Files

streaming.go

Version
v1.7.1
Published
May 10, 2023
Platform
linux/amd64
Imports
2 packages
Last checked
7 minutes ago

Tools for package owners.