hydra-node-0.21.0: The Hydra node
Safe HaskellSafe-Inferred
LanguageGHC2021

Hydra.Node.Network

Description

Concrete Network stack used in a hydra-node.

This module provides a withNetwork function which is the composition of several layers in order to provide various capabilities:

The following diagram details the various types of messages each layer is exchanging with its predecessors and successors.

          ▲
          │                        │
      Authenticated msg           msg
          │                        │
          │                        │
┌─────────┼────────────────────────▼──────┐
│                                         │
│               Authenticate              │
│                                         │
└─────────▲────────────────────────┼──────┘
          │                        │
          │                        │
         msg                      msg
          │                        │
┌─────────┼────────────────────────▼──────┐
│                                         │
│                   Etcd                  │
│                                         │
└─────────▲────────────────────────┼──────┘
          │                        │
          │        (bytes)         │
          │                        ▼

Synopsis

Documentation

data NetworkConfiguration Source #

Configuration for a Node network layer.

Constructors

NetworkConfiguration 

Fields

withNetwork Source #

Arguments

:: forall tx. IsTx tx 
=> Tracer IO NetworkLog

Tracer to use for logging messages.

-> NetworkConfiguration

The network configuration

-> NetworkComponent IO (Authenticated (Message tx)) (Message tx) ()

Produces a NetworkComponent that can send msg and consumes Authenticated msg.

Starts the network layer of a node, passing configured Network to its continuation.

data NetworkLog Source #

Instances

Instances details
Arbitrary NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

ToJSON NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

Methods

toJSON :: NetworkLog -> Value

toEncoding :: NetworkLog -> Encoding

toJSONList :: [NetworkLog] -> Value

toEncodingList :: [NetworkLog] -> Encoding

omitField :: NetworkLog -> Bool

Generic NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

Associated Types

type Rep NetworkLog :: Type -> Type Source #

Show NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

Eq NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

type Rep NetworkLog Source # 
Instance details

Defined in Hydra.Node.Network

type Rep NetworkLog = D1 ('MetaData "NetworkLog" "Hydra.Node.Network" "hydra-node-0.21.0-IAzUD3nPoh4KjMRMHOKHuC" 'False) (C1 ('MetaCons "Authenticate" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 AuthLog)) :+: C1 ('MetaCons "Etcd" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 EtcdLog)))