Interface UTF8Encoder
public interface UTF8Encoder
Interface for an external UTF8 Encoder that can be supplied by a client
 which implements custom encoding logic optimized for the application using
 the Codec.
- 
Method SummaryModifier and TypeMethodDescriptionencodeUTF8(ProtonBuffer buffer, CharSequence sequence) Encodes the given sequence of characters in UTF8 to the given buffer.
- 
Method Details- 
encodeUTF8Encodes the given sequence of characters in UTF8 to the given buffer.- Parameters:
- buffer- A ProtonBuffer where the UTF-8 encoded bytes should be written.
- sequence- A- CharSequencerepresenting the UTF-8 bytes to encode
- Returns:
- a reference to the encoding buffer for chaining
 
 
-