Co-authored-by: marbar3778 <marbar3778@yahoo.com> Co-authored-by: Marko <marko@baricevic.me> Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com> Co-authored-by: unknown unknown <unknown@unknown>
12 lines
265 B
Go
12 lines
265 B
Go
package streaming
|
|
|
|
import "cosmossdk.io/core/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
|
|
}
|