Documentation ¶
Index ¶
- func NewService(log logging.Logger, chainManager chains.Manager, httpServer *server.Server, ...) (*common.HTTPHandler, error)
- type Client
- type GetPublishedBlockchainsReply
- type IPCServer
- func (ipc *IPCServer) GetPublishedBlockchains(r *http.Request, args *struct{}, reply *GetPublishedBlockchainsReply) error
- func (ipc *IPCServer) PublishBlockchain(r *http.Request, args *PublishBlockchainArgs, reply *PublishBlockchainReply) error
- func (ipc *IPCServer) UnpublishBlockchain(r *http.Request, args *UnpublishBlockchainArgs, reply *api.SuccessResponse) error
- type PublishBlockchainArgs
- type PublishBlockchainReply
- type UnpublishBlockchainArgs
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶ added in v1.0.6
type Client struct {
// contains filtered or unexported fields
}
Client ...
func (*Client) GetPublishedBlockchains ¶ added in v1.1.4
GetPublishedBlockchains requests the node to get blockchains being published
func (*Client) PublishBlockchain ¶ added in v1.0.6
func (c *Client) PublishBlockchain(blockchainID string) (*PublishBlockchainReply, error)
PublishBlockchain requests the node to begin publishing consensus and decision events
type GetPublishedBlockchainsReply ¶ added in v1.1.4
GetPublishedBlockchainsReply is the result from calling GetPublishedBlockchains
type IPCServer ¶ added in v0.8.0
type IPCServer struct {
// contains filtered or unexported fields
}
IPCServer maintains the IPCs
func (*IPCServer) GetPublishedBlockchains ¶ added in v1.1.4
func (ipc *IPCServer) GetPublishedBlockchains(r *http.Request, args *struct{}, reply *GetPublishedBlockchainsReply) error
GetPublishedBlockchains returns blockchains being published
func (*IPCServer) PublishBlockchain ¶ added in v0.8.0
func (ipc *IPCServer) PublishBlockchain(r *http.Request, args *PublishBlockchainArgs, reply *PublishBlockchainReply) error
PublishBlockchain publishes the finalized accepted transactions from the blockchainID over the IPC
func (*IPCServer) UnpublishBlockchain ¶ added in v0.8.0
func (ipc *IPCServer) UnpublishBlockchain(r *http.Request, args *UnpublishBlockchainArgs, reply *api.SuccessResponse) error
UnpublishBlockchain closes publishing of a blockchainID
type PublishBlockchainArgs ¶
type PublishBlockchainArgs struct {
BlockchainID string `json:"blockchainID"`
}
PublishBlockchainArgs are the arguments for calling PublishBlockchain
type PublishBlockchainReply ¶
type PublishBlockchainReply struct { ConsensusURL string `json:"consensusURL"` DecisionsURL string `json:"decisionsURL"` }
PublishBlockchainReply are the results from calling PublishBlockchain
type UnpublishBlockchainArgs ¶
type UnpublishBlockchainArgs struct {
BlockchainID string `json:"blockchainID"`
}
UnpublishBlockchainArgs are the arguments for calling UnpublishBlockchain