bin_to_hexstr/1 | Convert a binary() to a hexadecimal string. |
checksum_chunk/1 | Calculate a checksum for a chunk of file data. |
connect/2 | Create a TCP connection to a remote Machi server. |
connect/3 | Create a TCP connection to a remote Machi server. |
hexstr_to_bin/1 | Convert a hexadecimal string to a binary() . |
hexstr_to_int/1 | Convert a hexadecimal string to an integer. |
increment_max_filenum/2 | Increase the file size of a config file, which is used as the basis for a minimum sequence number. |
info_msg/2 | Log an 'info' level message. |
int_to_hexbin/2 | Convert an integer into a hexadecimal string (in binary()
form) whose length is based on I_size . |
int_to_hexstr/2 | Convert an integer into a hexadecimal string whose length is
based on I_size . |
make_binary/1 | Convert a compatible Erlang data type into a binary() equivalent. |
make_checksum_filename/2 | Calculate a checksum file path, by common convention. |
make_checksum_filename/4 | Calculate a checksum file path, by common convention. |
make_config_filename/2 | Calculate a config file path, by common convention. |
make_data_filename/2 | Calculate a file data file path, by common convention. |
make_data_filename/4 | Calculate a file data file path, by common convention. |
make_projection_filename/2 | Calculate a projection store file path, by common convention. |
make_regname/1 | Create a registered name atom for FLU sequencer internal rendezvous/message passing use. |
make_string/1 | Convert a compatible Erlang data type into a string() equivalent. |
read_max_filenum/2 | Read the file size of a config file, which is used as the basis for a minimum sequence number. |
verb/1 | Log a verbose message. |
verb/2 | Log a verbose message. |
bin_to_hexstr(X1::binary()) -> string()
Convert a binary()
to a hexadecimal string.
checksum_chunk(Chunk::binary() | iolist()) -> binary()
Calculate a checksum for a chunk of file data.
connect(Host::inet:ip_address() | inet:hostname(), Port::inet:port_number()) -> port()
Create a TCP connection to a remote Machi server.
connect(Host::inet:ip_address() | inet:hostname(), Port::inet:port_number(), Timeout::timeout()) -> port()
Create a TCP connection to a remote Machi server.
hexstr_to_bin(S::string() | binary()) -> binary()
Convert a hexadecimal string to a binary()
.
hexstr_to_int(X::string() | binary()) -> non_neg_integer()
Convert a hexadecimal string to an integer.
increment_max_filenum(DataDir::string(), Prefix::string()) -> ok | {error, term()}
Increase the file size of a config file, which is used as the basis for a minimum sequence number.
info_msg(Fmt::string(), Args::list()) -> term()
Log an 'info' level message.
int_to_hexbin(I::non_neg_integer(), I_size::non_neg_integer()) -> binary()
Convert an integer into a hexadecimal string (in binary()
form) whose length is based on I_size
.
int_to_hexstr(I::non_neg_integer(), I_size::non_neg_integer()) -> string()
Convert an integer into a hexadecimal string whose length is
based on I_size
.
make_binary(X::binary() | iolist()) -> binary()
Convert a compatible Erlang data type into a binary()
equivalent.
make_checksum_filename(DataDir::string(), FileName::[] | string() | binary()) -> string()
Calculate a checksum file path, by common convention.
make_checksum_filename(DataDir::string(), Prefix::string(), SequencerName::atom() | string() | binary(), FileNum::integer()) -> string()
Calculate a checksum file path, by common convention.
make_config_filename(DataDir::string(), Prefix::string()) -> string()
Calculate a config file path, by common convention.
make_data_filename(DataDir::string(), File::[] | string() | binary()) -> {binary(), string()}
Calculate a file data file path, by common convention.
make_data_filename(DataDir::string(), Prefix::string(), SequencerName::atom() | string() | binary(), FileNum::integer()) -> {binary(), string()}
Calculate a file data file path, by common convention.
make_projection_filename(DataDir::string(), File::[] | string()) -> string()
Calculate a projection store file path, by common convention.
make_regname(Prefix::binary() | list()) -> atom()
Create a registered name atom for FLU sequencer internal rendezvous/message passing use.
make_string(X::binary() | iolist()) -> string()
Convert a compatible Erlang data type into a string()
equivalent.
read_max_filenum(DataDir::string(), Prefix::string()) -> non_neg_integer()
Read the file size of a config file, which is used as the basis for a minimum sequence number.
verb(Fmt::string()) -> term()
Log a verbose message.
verb(Fmt::string(), Args::list()) -> term()
Log a verbose message.
Generated by EDoc, May 20 2015, 12:58:33.