Class name | com.ebd.hub.datawizard.postexec.MessagePackPostExecuter |
Description
This post-executor can generate a MessagePack message (binary).
No configuration is necessary.
Example:
Use the following JSON file as the input file for a Profile without Mapping.
{
"name" : "Alice",
"age" : 30,
"email" : "alice@example.com",
"active" : true
}
Then create a Response of type “File” (with file name “simple.msgpack”) that uses the JSON input file as content, and use the MessagePackPostExecuter.
As a result, you should receive the following file.
Of course, you can also create the JSON file yourself using the ExtendedJsonCreationUnit.
JSON (JavaScript Object Notation) is a lightweight text format for data exchange. The Lobster Data Platform handles JSON in integration profiles, web resources, and API interfaces. Value resolvers convert JSON data to internal objects and vice versa.
A profile is the central configuration unit in the Lobster Data Platform. It receives data, processes it, and forwards it. Configuration is done graphically, with no programming required.
The core task of Phase 3. Mapping transfers data from the source structure to the target structure according to defined rules. In the process, fields can be transformed, functions can be called, and values can be calculated.
The response determines how a profile sends processed data. In Phase 6, a response determines how and where the output data is sent or stored, e.g., via FTP, HTTP or e-mail. A profile can use several responses in parallel.