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.15
Published
Apr 5, 2024
Platform
linux/amd64
Imports
2 packages
Last checked
10 seconds ago

Tools for package owners.