Class LuaResponseWriter
java.lang.Object
org.infinispan.server.resp.serialization.lua.LuaResponseWriter
- All Implemented Interfaces:
ResponseWriter
-
Field Summary
Fields inherited from interface org.infinispan.server.resp.serialization.ResponseWriter
ARRAY_BULK_STRING, ARRAY_DOUBLE, ARRAY_INTEGER, ARRAY_STRING, BULK_STRING, BULK_STRING_BYTES, CUSTOM, DOUBLE, INTEGER, MAP_BULK_STRING_KV, OK, SET_BULK_STRING, SIMPLE_STRING, UNKNOWN
-
Constructor Summary
Constructors -
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.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.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) 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.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) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.server.resp.serialization.ResponseWriter
customError, indexOutOfRange, minOrMaxNotAValidFloat, minOrMaxNotAValidStringRange, mustBePositive, mustBePositive, nanOrInfinity, noSuchKey, syntaxError, transactionAborted, unauthorized, unknownCommand, valueNotAValidFloat, valueNotInteger, wrongArgumentCount, wrongArgumentNumber, wrongType
-
Constructor Details
-
LuaResponseWriter
public LuaResponseWriter(party.iroiro.luajava.Lua lua)
-
-
Method Details
-
version
- Specified by:
version
in interfaceResponseWriter
-
version
- Specified by:
version
in interfaceResponseWriter
-
isInternal
public boolean isInternal()- Specified by:
isInternal
in interfaceResponseWriter
-
nulls
public void nulls()Description copied from interface:ResponseWriter
Writes the null value.- Specified by:
nulls
in interfaceResponseWriter
-
ok
public void ok()Description copied from interface:ResponseWriter
Serializes a simple string with the"OK"
content.- Specified by:
ok
in interfaceResponseWriter
-
queued
Description copied from interface:ResponseWriter
Serializes a simple string with the"QUEUED"
content.- Specified by:
queued
in interfaceResponseWriter
- Parameters:
ignore
- Content to ignore.
-
simpleString
Description copied from interface:ResponseWriter
Serializes a char sequence in a simple string format.- Specified by:
simpleString
in interfaceResponseWriter
- Parameters:
value
- The ASCII string to serialize.
-
string
Description copied from interface:ResponseWriter
Serializes a char sequence in a bulk string format.- Specified by:
string
in interfaceResponseWriter
- Parameters:
value
- The string to serialize.
-
string
public void string(byte[] value) Description copied from interface:ResponseWriter
Serializes the binary blob in a bulk string format.- Specified by:
string
in interfaceResponseWriter
- Parameters:
value
- The binary blob to serialize.
-
integers
Description copied from interface:ResponseWriter
Serializes a 64-bit number in the integer format.- Specified by:
integers
in interfaceResponseWriter
- Parameters:
value
- Number to serialize.
-
doubles
Description copied from interface:ResponseWriter
Serializes a double-precision floating point into the doubles format.- Specified by:
doubles
in interfaceResponseWriter
- Parameters:
value
- The floating point to serialize.
-
booleans
public void booleans(boolean value) Description copied from interface:ResponseWriter
Serializes a boolean value in the RESP3 format.- Specified by:
booleans
in interfaceResponseWriter
- Parameters:
value
- Boolean value to serialize.
-
arrayEmpty
public void arrayEmpty()Description copied from interface:ResponseWriter
Serializes a collection in the array format.- Specified by:
arrayEmpty
in interfaceResponseWriter
-
array
Description copied from interface:ResponseWriter
Serializes the collection by delegating the serialization of the elements to the provided serializer.- Specified by:
array
in interfaceResponseWriter
- 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
Description copied from interface:ResponseWriter
Serializes a collection in the array format with elements of a specified type.- Specified by:
array
in interfaceResponseWriter
- Parameters:
collection
- Collection of heterogeneous values to serialize.contentType
- The type of elements contained by the sequence.
-
emptySet
public void emptySet()Description copied from interface:ResponseWriter
Serializes a set- Specified by:
emptySet
in interfaceResponseWriter
-
set
Description copied from interface:ResponseWriter
Serializes a set with elements of a specified type.- Specified by:
set
in interfaceResponseWriter
- Parameters:
set
- Set of heterogeneous values to serialize.contentType
- The type of elements contained by the set.
-
set
- Specified by:
set
in interfaceResponseWriter
-
map
Description copied from interface:ResponseWriter
Serializes a map.- Specified by:
map
in interfaceResponseWriter
- Parameters:
map
- A map with heterogeneous key-value tuples to serialize.
-
map
Description copied from interface:ResponseWriter
Serializes a map with key and values of the same specified type.- Specified by:
map
in interfaceResponseWriter
- Parameters:
map
- A map with heterogeneous key-value tuples to serialize.contentType
- The type of key and value elements.
-
map
Description copied from interface:ResponseWriter
Serializes a map in the RESP3 map format with keys and values of a specified format.- Specified by:
map
in interfaceResponseWriter
- Parameters:
map
- 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.
-
map
- Specified by:
map
in interfaceResponseWriter
-
error
Description copied from interface:ResponseWriter
Serializes an error message.The first character in the error message must be the
'-'
symbol.- Specified by:
error
in interfaceResponseWriter
- Parameters:
value
- An ASCII char sequence with the error message.
-
error
Description copied from interface:ResponseWriter
Serializes the exception message in the RESP3 error format.- Specified by:
error
in interfaceResponseWriter
- Parameters:
t
- The throwable to serialize.
-
write
Description copied from interface:ResponseWriter
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.
- Specified by:
write
in interfaceResponseWriter
- Type Parameters:
T
- The type of the object.- Parameters:
object
- The element to serialize.serializer
- The serializer to utilize.
-
write
Description copied from interface:ResponseWriter
Invokes the callback to write a response with the serializer.- Specified by:
write
in interfaceResponseWriter
- Parameters:
serializer
- Serializer to write.
-
serialize
Description copied from interface:ResponseWriter
Generic method to serialize an object of unknown type.This method searches all serializers available in the registry.
- Specified by:
serialize
in interfaceResponseWriter
- Parameters:
object
- The object to serialize in RESP3 format.
-
writeNumericPrefix
public void writeNumericPrefix(byte symbol, long number) - Specified by:
writeNumericPrefix
in interfaceResponseWriter
-
arrayStart
public void arrayStart(int size) Description copied from interface:ResponseWriter
Start writing an array- Specified by:
arrayStart
in interfaceResponseWriter
- Parameters:
size
- the number of elements
-
arrayEnd
public void arrayEnd()Description copied from interface:ResponseWriter
Finish writing an array- Specified by:
arrayEnd
in interfaceResponseWriter
-
arrayNext
public void arrayNext()Description copied from interface:ResponseWriter
Start writing a new array element- Specified by:
arrayNext
in interfaceResponseWriter
-