streaming

package
v1.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 10, 2023 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

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
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL