Versions in this module Expand all Collapse all v0 v0.0.1 Jun 7, 2021 Changes in this version + var RequestInfo = abci.RequestInfo + type AppConnConsensus interface + BeginBlockSync func(types.RequestBeginBlock) (*types.ResponseBeginBlock, error) + CommitSync func() (*types.ResponseCommit, error) + DeliverTxAsync func(types.RequestDeliverTx) *abcicli.ReqRes + EndBlockSync func(types.RequestEndBlock) (*types.ResponseEndBlock, error) + Error func() error + InitChainSync func(types.RequestInitChain) (*types.ResponseInitChain, error) + SetResponseCallback func(abcicli.Callback) + func NewAppConnConsensus(appConn abcicli.Client) AppConnConsensus + type AppConnMempool interface + CheckTxAsync func(types.RequestCheckTx) *abcicli.ReqRes + CheckTxSync func(types.RequestCheckTx) (*types.ResponseCheckTx, error) + Error func() error + FlushAsync func() *abcicli.ReqRes + FlushSync func() error + SetResponseCallback func(abcicli.Callback) + func NewAppConnMempool(appConn abcicli.Client) AppConnMempool + type AppConnQuery interface + EchoSync func(string) (*types.ResponseEcho, error) + Error func() error + InfoSync func(types.RequestInfo) (*types.ResponseInfo, error) + QuerySync func(types.RequestQuery) (*types.ResponseQuery, error) + func NewAppConnQuery(appConn abcicli.Client) AppConnQuery + type AppConnSnapshot interface + ApplySnapshotChunkSync func(types.RequestApplySnapshotChunk) (*types.ResponseApplySnapshotChunk, error) + Error func() error + ListSnapshotsSync func(types.RequestListSnapshots) (*types.ResponseListSnapshots, error) + LoadSnapshotChunkSync func(types.RequestLoadSnapshotChunk) (*types.ResponseLoadSnapshotChunk, error) + OfferSnapshotSync func(types.RequestOfferSnapshot) (*types.ResponseOfferSnapshot, error) + func NewAppConnSnapshot(appConn abcicli.Client) AppConnSnapshot + type AppConns interface + Consensus func() AppConnConsensus + Mempool func() AppConnMempool + Query func() AppConnQuery + Snapshot func() AppConnSnapshot + func NewAppConns(clientCreator ClientCreator) AppConns + func NewMultiAppConn(clientCreator ClientCreator) AppConns + type ClientCreator interface + NewABCIClient func() (abcicli.Client, error) + func DefaultClientCreator(addr, transport, dbDir string) ClientCreator + func NewLocalClientCreator(app types.Application) ClientCreator + func NewRemoteClientCreator(addr, transport string, mustConnect bool) ClientCreator