Class Intrinsics

java.lang.Object
org.infinispan.server.resp.Intrinsics

public class Intrinsics extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static byte[]
    bulkArray(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)
     
    bulkCommand(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)
     
    static String
    bulkString(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)
     
    static long
    readNumber(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor)
     
    static byte[]
    readTerminatedBytes(io.netty.buffer.ByteBuf buf, int maxArraySize)
     
    simpleCommand(io.netty.buffer.ByteBuf buf, int maxArraySize)
     
    static String
    simpleString(io.netty.buffer.ByteBuf buf, int lengthMaximum)
     
    static byte
    singleByte(io.netty.buffer.ByteBuf buffer)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Intrinsics

      public Intrinsics()
  • Method Details

    • singleByte

      public static byte singleByte(io.netty.buffer.ByteBuf buffer)
    • simpleString

      public static String simpleString(io.netty.buffer.ByteBuf buf, int lengthMaximum)
    • simpleCommand

      public static RespCommand simpleCommand(io.netty.buffer.ByteBuf buf, int maxArraySize)
    • readNumber

      public static long readNumber(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor)
    • readTerminatedBytes

      public static byte[] readTerminatedBytes(io.netty.buffer.ByteBuf buf, int maxArraySize)
    • bulkString

      public static String bulkString(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)
    • bulkCommand

      public static RespCommand bulkCommand(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)
    • bulkArray

      public static byte[] bulkArray(io.netty.buffer.ByteBuf buf, org.infinispan.server.resp.Intrinsics.Resp2LongProcessor longProcessor, int maxArraySize)