ouroboros-network-framework-0.1.0.1
Safe Haskell None
Language Haskell2010

Ouroboros.Network.Server.ConnectionTable

Synopsis

Documentation

data ConnectionTableRef Source #

Constructors

ConnectionTableCreate

No connection to peer exists, attempt to create one.

ConnectionTableExist

A connection to the peer existed, either from another subscriber or the peer opened one towards us.

ConnectionTableDuplicate

This subscriber already has counted a connection to this peer. It must try another target.

data ValencyCounter m Source #

ValencyCounter represents how many active connections we have towards a given peer. It starts out with a positive value representing a desired number of connections for a specific subscription worker. It can become negative, for example if a peer opens multiple connections to us. The vcId is unique per ConnectionTable and ensures that we won't count the same connection twice.

newConnectionTableSTM :: MonadSTM m => STM m ( ConnectionTable m addr) Source #

Create a new ConnectionTable.

refConnectionSTM :: ( MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> ValencyCounter m -> STM m ConnectionTableRef Source #

Try to see if it is possible to reference an existing connection rather than creating a new one to the provied peer.

addConnection Source #

Arguments

:: forall m addr. ( MonadSTM m, Ord addr)
=> ConnectionTable m addr
-> addr
-> addr
-> Maybe ( ValencyCounter m)

Optional ValencyCounter, used by subscription worker and set to Nothing when called by a local server.

-> STM m ()

Insert a new connection into the ConnectionTable.

removeConnectionSTM :: forall m addr. ( MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> addr -> STM m () Source #

Remove a Connection.

removeConnection :: forall m addr. ( MonadSTM m, Ord addr) => ConnectionTable m addr -> addr -> addr -> m () Source #

newValencyCounter Source #

Arguments

:: MonadSTM m
=> ConnectionTable m addr
-> Int

Desired valency, that is number of connections a subscription worker will attempt to maintain.

-> STM m ( ValencyCounter m)

Create a new ValencyCounter

waitValencyCounter :: MonadSTM m => ValencyCounter m -> STM m () Source #

Wait until ValencyCounter becomes positive, used for detecting when we can create new connections.

readValencyCounter :: MonadSTM m => ValencyCounter m -> STM m Int Source #

Returns current ValencyCounter value, represent the number of additional connections that can be created. May be negative.