cosmos-sdk/server/v2/streaming/context.go
Marko d7cc6de7cc
chore: upstream more changes from v2 (#20387)
Co-authored-by: Matt Kocubinski <mkocubinski@gmail.com>
2024-05-17 10:58:52 +00:00

12 lines
260 B
Go

package streaming
import "cosmossdk.io/log"
// Context is an interface used by an App to pass context information
// needed to process store streaming requests.
type Context interface {
BlockHeight() int64
Logger() log.Logger
StreamingManager() Manager
}