packages feed

capnp-0.13.0.0: lib/Capnp/New/Rpc/Common.hs

module Capnp.New.Rpc.Common
    ( Client(..)
    , Pipeline(..)
    ) where

import {-# SOURCE #-} qualified Capnp.Rpc.Untyped as Rpc

-- | A @'Pipeline' a@ is a reference to possibly-not-resolved result from
-- a method call.
newtype Pipeline a = Pipeline Rpc.Pipeline

newtype Client a = Client Rpc.Client
    deriving(Show, Eq)