Go to the source code of this file.
|
| | ipc |
| |
| | ipc::capnp |
| |
| | mp |
| | Functions to serialize / deserialize common bitcoin types.
|
| |
|
| template<typename S > |
| auto | ipc::capnp::Wrap (S &s) |
| | Construct a ParamStream wrapping a data stream with serialization parameters needed to pass transaction objects between bitcoin processes. More...
|
| |
| template<typename LocalType , typename Value , typename Output > |
| void | mp::CustomBuildField (TypeList< LocalType >, Priority< 1 >, InvokeContext &invoke_context, Value &&value, Output &&output) requires Serializable< LocalType |
| | Overload multiprocess library's CustomBuildField hook to allow any serializable object to be stored in a capnproto Data field or passed to a capnproto interface. More...
|
| |
| value | mp::Serialize (wrapper) |
| |
| | mp::memcpy (result.begin(), stream.data(), stream.size()) |
| |
| template<typename LocalType , typename Input , typename ReadDest > |
| decltype(auto) | mp::CustomReadField (TypeList< LocalType >, Priority< 1 >, InvokeContext &invoke_context, Input &&input, ReadDest &&read_dest) requires Unserializable< LocalType |
| | Overload multiprocess library's CustomReadField hook to allow any object with an Unserialize method to be read from a capnproto Data field or returned from capnproto interface. More...
|
| |
| template<typename Input , typename ReadDest > |
| decltype(auto) | mp::CustomReadField (TypeList< UniValue >, Priority< 1 >, InvokeContext &invoke_context, Input &&input, ReadDest &&read_dest) |
| |