Interface ResponseWriter
- All Known Implementing Classes:
ByteBufResponseWriter
,LuaResponseWriter
The class provides specific methods for the RESP types. In cases where the response object type is unknown or heterogeneous during runtime, there is a generic method.
During serialization, the class introspects the registry for a serializer capable of handling the object before proceeding. Utilizing a specific method reduces the number of candidates to check. The generic method verifies all serializers in the registry and short circuits after the first match. However, this could cause many checks until the correct serializer. Give preference to specific methods.
The method throws an exception when an object does not have a serializer.
- Since:
- 15.0
- Author:
- José Bolina
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BiConsumer
<Collection<byte[]>, ResponseWriter> List the consumers for array responses with the different types needed.static final BiConsumer
<Collection<? extends Number>, ResponseWriter> static final BiConsumer
<Collection<? extends Number>, ResponseWriter> static final BiConsumer
<Collection<? extends String>, ResponseWriter> static final BiConsumer
<CharSequence, ResponseWriter> static final BiConsumer
<byte[], ResponseWriter> static final BiConsumer
<JavaObjectSerializer<?>, ResponseWriter> static final BiConsumer
<Number, ResponseWriter> static final BiConsumer
<Number, ResponseWriter> static final BiConsumer
<Map<byte[], byte[]>, ResponseWriter> List the consumers for map responses with the different types needed.static final BiConsumer
<Object, ResponseWriter> static final BiConsumer
<Set<byte[]>, ResponseWriter> List the consumers for set responses with the different types needed.static final BiConsumer
<CharSequence, ResponseWriter> static final BiConsumer
<Object, ResponseWriter> -
Method Summary
Modifier and TypeMethodDescriptionvoid
array
(Collection<?> collection, Resp3Type contentType) Serializes a collection in the array format with elements of a specified type.<T> void
array
(Collection<T> collection, JavaObjectSerializer<T> serializer) Serializes the collection by delegating the serialization of the elements to the provided serializer.void
Serializes a collection in the array format.void
arrayEnd()
Finish writing an arrayvoid
Start writing a new array elementvoid
arrayStart
(int size) Start writing an arrayvoid
booleans
(boolean value) Serializes a boolean value in the RESP3 format.default void
customError
(String error) void
Serializes a double-precision floating point into the doubles format.void
emptySet()
Serializes a setvoid
error
(CharSequence value) Serializes an error message.void
Serializes the exception message in the RESP3 error format.static Consumer
<ResponseWriter> default void
void
Serializes a 64-bit number in the integer format.boolean
void
Serializes a map.void
Serializes a map with key and values of the same specified type.void
Serializes a map in the RESP3 map format with keys and values of a specified format.void
map
(Map<?, ?> map, SerializationHint.KeyValueHint keyValueHint) default void
default void
default void
default void
mustBePositive
(String argumentName) default void
default void
void
nulls()
Writes the null value.void
ok()
Serializes a simple string with the"OK"
content.void
Serializes a simple string with the"QUEUED"
content.void
Generic method to serialize an object of unknown type.<T> void
set
(Set<?> set, JavaObjectSerializer<T> serializer) void
Serializes a set with elements of a specified type.void
simpleString
(CharSequence value) Serializes a char sequence in a simple string format.void
string
(byte[] value) Serializes the binary blob in a bulk string format.void
string
(CharSequence value) Serializes a char sequence in a bulk string format.default void
default void
default void
default void
default void
default void
version()
void
version
(RespVersion version) <T> void
write
(JavaObjectSerializer<T> serializer) Invokes the callback to write a response with the serializer.<T> void
write
(T object, JavaObjectSerializer<T> serializer) Writes an object utilizing the specific serializer.void
writeNumericPrefix
(byte symbol, long number) default void
wrongArgumentCount
(RespCommand command) default void
wrongArgumentNumber
(RespCommand command) default void
-
Field Details
-
OK
-
SIMPLE_STRING
-
BULK_STRING_BYTES
-
BULK_STRING
-
INTEGER
-
DOUBLE
-
UNKNOWN
-
CUSTOM
-
ARRAY_BULK_STRING
List the consumers for array responses with the different types needed. Add new types as necessary. -
ARRAY_INTEGER
-
ARRAY_DOUBLE
-
ARRAY_STRING
-
SET_BULK_STRING
List the consumers for set responses with the different types needed. -
MAP_BULK_STRING_KV
List the consumers for map responses with the different types needed.
-
-
Method Details
-
isInternal
boolean isInternal() -
version
RespVersion version() -
version
-
nulls
void nulls()Writes the null value. -
ok
void ok()Serializes a simple string with the"OK"
content. -
queued
Serializes a simple string with the"QUEUED"
content.- Parameters:
ignore
- Content to ignore.
-
simpleString
Serializes a char sequence in a simple string format.- Parameters:
value
- The ASCII string to serialize.
-
string
Serializes a char sequence in a bulk string format.- Parameters:
value
- The string to serialize.
-
string
void string(byte[] value) Serializes the binary blob in a bulk string format.- Parameters:
value
- The binary blob to serialize.
-
integers
Serializes a 64-bit number in the integer format.- Parameters:
value
- Number to serialize.
-
doubles
Serializes a double-precision floating point into the doubles format.- Parameters:
value
- The floating point to serialize.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
booleans
void booleans(boolean value) Serializes a boolean value in the RESP3 format.- Parameters:
value
- Boolean value to serialize.
-
arrayEmpty
void arrayEmpty()Serializes a collection in the array format.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
array
Serializes the collection by delegating the serialization of the elements to the provided serializer.- Type Parameters:
T
- The type of the elements in the collection and the serializer handles.- Parameters:
collection
- Collection of elements to serialize.serializer
- Serializer for a single element in the collection.
-
array
Serializes a collection in the array format with elements of a specified type.- Parameters:
collection
- Collection of heterogeneous values to serialize.contentType
- The type of elements contained by the sequence.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
emptySet
void emptySet()Serializes a set- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
set
Serializes a set with elements of a specified type.- Parameters:
set
- Set of heterogeneous values to serialize.contentType
- The type of elements contained by the set.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
set
-
map
Serializes a map.- Parameters:
value
- A map with heterogeneous key-value tuples to serialize.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
map
Serializes a map with key and values of the same specified type.- Parameters:
value
- A map with heterogeneous key-value tuples to serialize.contentType
- The type of key and value elements.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
map
Serializes a map in the RESP3 map format with keys and values of a specified format.- Parameters:
value
- A map with heterogeneous key-value tuples to serialize.keyType
- The type of keys in the map.valueType
- The type of values in the map.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
map
-
error
Serializes an error message.The first character in the error message must be the
'-'
symbol.- Parameters:
value
- An ASCII char sequence with the error message.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
error
Serializes the exception message in the RESP3 error format.- Parameters:
t
- The throwable to serialize.
-
write
Writes an object utilizing the specific serializer.Implementors do not need to check for nullability in the implementation. Null response values are handled by native RESP3 serializers before passing the serialization ahead.
- Type Parameters:
T
- The type of the object.- Parameters:
object
- The element to serialize.serializer
- The serializer to utilize.
-
write
Invokes the callback to write a response with the serializer.- Parameters:
serializer
- Serializer to write.
-
serialize
Generic method to serialize an object of unknown type.This method searches all serializers available in the registry.
- Parameters:
object
- The object to serialize in RESP3 format.- Throws:
IllegalStateException
- in case no serializer is found for the object.
-
writeNumericPrefix
void writeNumericPrefix(byte symbol, long number) -
syntaxError
default void syntaxError() -
unknownCommand
default void unknownCommand() -
unauthorized
default void unauthorized() -
customError
-
wrongArgumentCount
-
nanOrInfinity
default void nanOrInfinity() -
valueNotInteger
default void valueNotInteger() -
valueNotAValidFloat
default void valueNotAValidFloat() -
minOrMaxNotAValidFloat
default void minOrMaxNotAValidFloat() -
minOrMaxNotAValidStringRange
default void minOrMaxNotAValidStringRange() -
transactionAborted
default void transactionAborted() -
mustBePositive
-
mustBePositive
default void mustBePositive() -
wrongArgumentNumber
-
indexOutOfRange
default void indexOutOfRange() -
noSuchKey
default void noSuchKey() -
wrongType
default void wrongType() -
handleException
-
arrayStart
void arrayStart(int size) Start writing an array- Parameters:
size
- the number of elements
-
arrayEnd
void arrayEnd()Finish writing an array -
arrayNext
void arrayNext()Start writing a new array element
-