Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

megaco_edist_compress(3erl) [linux man page]

megaco_edist_compress(3erl)				     Erlang Module Definition				       megaco_edist_compress(3erl)

NAME
megaco_edist_compress - Megaco erlang dist compress behaviour. DESCRIPTION
The following functions should be exported from a megaco_edist_compress callback module: EXPORTS
Module:encode(R, Version) -> T Types R = megaco_message() | transaction() | action_reply() | action_request() | command_request() Version = integer() T = term() Compress a megaco component. The erlang dist encoder makes no assumption on the how or even if the component is compressed. Module:decode(T, Version) -> R Types T = term() Version = integer() R = megaco_message() | transaction() | action_reply() | action_request() | command_request() Decompress a megaco component. Ericsson AB megaco 3.15.1 megaco_edist_compress(3erl)

Check Out this Related Man Page

megaco_codec_mstone1(3erl)				     Erlang Module Definition					megaco_codec_mstone1(3erl)

NAME
megaco_codec_mstone1 - This module implements a simple megaco codec-based performance tool. DESCRIPTION
This module implements the mstone1 tool, a simple megaco codec-based performance tool. The results, the mstone value(s), are written to stdout. Note that this module is not included in the runtime part of the application. EXPORTS
start() -> void() start(MessagePackage) -> void() start(MessagePackage, Factor) -> void() Types MessagePackage = message_package() message_package() = atom() Factor() = integer() > 0 This function starts the mstone1 performance test with all codec configs. Factor (defaults to 1 ) processes are started for every supported codec config. Each process encodes and decodes their messages. The number of messages processed in total (for all processes) is the mstone value. start_flex() -> void() start_flex(MessagePackage) -> void() start_flex(MessagePackage, Factor) -> void() Types MessagePackage = message_package() message_package() = atom() Factor() = integer() > 0 This function starts the mstone1 performance test with only the flex codec configs (i.e. pretty and compact with flex ). The same number of processes are started as when running the standard test (using the start/0,1 function). Each process encodes and decodes their messages. The number of messages processed in total (for all processes) is the mstone value. start_only_drv() -> void() start_only_drv(MessagePackage) -> void() start_only_drv(MessagePackage, Factor) -> void() Types MessagePackage = message_package() message_package() = atom() Factor() = integer() > 0 This function starts the mstone1 performance test with only the driver using codec configs (i.e. pretty and compact with flex , and ber and per with driver and erlang with compressed ). The same number of processes are started as when running the standard test (using the start/0,1 function). Each process encodes and decodes their messages. The number of messages processed in total (for all processes) is the mstone value. start_no_drv() -> void() start_no_drv(MessagePackage) -> void() start_no_drv(MessagePackage, Factor) -> void() Types MessagePackage = message_package() message_package() = atom() Factor() = integer() > 0 This function starts the mstone1 performance test with codec configs not using any drivers (i.e. pretty and compact without flex , ber and per without driver and erlang without compressed ). The same number of processes are started as when running the standard test (using the start/0,1 function). Each process encodes and decodes their messages. The number of messages processed in total (for all processes) is the mstone value. Ericsson AB megaco 3.15.1 megaco_codec_mstone1(3erl)
Man Page