Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Hydra.Client
Synopsis
- data HydraEvent tx
- data AllPossibleAPIMessages tx
- = ApiTimedServerOutput (TimedServerOutput tx)
- | ApiClientMessage (ClientMessage tx)
- | ApiGreetings (Greetings tx)
- | ApiInvalidInput InvalidInput
- data Client tx m = Client {
- sendInput :: ClientInput tx -> m ()
- sk :: SigningKey PaymentKey
- externalCommit :: UTxO -> m ()
- recoverCommit :: TxId -> m ()
- type ClientCallback tx m = HydraEvent tx -> m ()
- type ClientComponent tx m a = ClientCallback tx m -> (Client tx m -> m a) -> m a
- withClient :: forall tx a. IsChainState tx => Options -> ClientComponent tx IO a
- data ClientError = ClientJSONDecodeError String ByteString
Documentation
data HydraEvent tx Source #
Constructors
ClientConnected | |
ClientDisconnected | |
Update (AllPossibleAPIMessages tx) | |
Tick UTCTime |
Instances
data AllPossibleAPIMessages tx Source #
All possible messages that expect to receive from the hydra-node.
Constructors
ApiTimedServerOutput (TimedServerOutput tx) | |
ApiClientMessage (ClientMessage tx) | |
ApiGreetings (Greetings tx) | |
ApiInvalidInput InvalidInput |
Instances
IsChainState tx => FromJSON (AllPossibleAPIMessages tx) Source # | |
Defined in Hydra.Client Methods parseJSON :: Value -> Parser (AllPossibleAPIMessages tx) parseJSONList :: Value -> Parser [AllPossibleAPIMessages tx] omittedField :: Maybe (AllPossibleAPIMessages tx) | |
IsChainState tx => Show (AllPossibleAPIMessages tx) Source # | |
Defined in Hydra.Client | |
IsChainState tx => Eq (AllPossibleAPIMessages tx) Source # | |
Defined in Hydra.Client Methods (==) :: AllPossibleAPIMessages tx -> AllPossibleAPIMessages tx -> Bool Source # (/=) :: AllPossibleAPIMessages tx -> AllPossibleAPIMessages tx -> Bool Source # |
Handle to interact with Hydra node
Constructors
Client | |
Fields
|
type ClientCallback tx m = HydraEvent tx -> m () Source #
Callback for receiving server outputs.
type ClientComponent tx m a = ClientCallback tx m -> (Client tx m -> m a) -> m a Source #
A type tying both receiving output and sending input into a Component.
withClient :: forall tx a. IsChainState tx => Options -> ClientComponent tx IO a Source #
Provide a component to interact with Hydra node.
data ClientError Source #
Constructors
ClientJSONDecodeError String ByteString |