The size of each chunk in bytes. Default : 8192
If true, compress the message using zlib. Default : false
void
Exception if # of chunks > 128.
auto s = new UdpSocket(); s.connect(new InternetAddress("localhost", 12200)); // Start netcat to watch this packet : `nc -lu 12200` s.sendChunked(gelfMessage, 500);
This function provides a convenient way to send chunked GELF messages to Graylog. It automatically chunks a message based on packetSizeBytes.