bformat/source/bformat/package.d

15 lines
387 B
D
Raw Normal View History

2023-03-25 19:59:38 +01:00
module bformat;
/**
* Encodes the provided message into the bformat format
* and sends it over the provided socket
*/
public import bformat.sockets : sendMessage;
/**
* Receives a message from the provided socket
* by decoding the streamed bytes into bformat
* and finally placing the resulting payload in
* the provided array
*/
public import bformat.sockets : receiveMessage;