Class ThriftCall

java.lang.Object
com.linecorp.armeria.common.thrift.ThriftMessage
com.linecorp.armeria.common.thrift.ThriftCall

public final class ThriftCall extends ThriftMessage
A container of a Thrift one-way or two-way call object (TBase) and its header (TMessage). It is exported to RequestOnlyLog.requestContent() when a Thrift call is processed.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ThriftCall(org.apache.thrift.protocol.TMessage header, org.apache.thrift.TBase<?,?> args)
    Creates a new instance that contains a Thrift TMessageType.CALL or TMessageType.ONEWAY message.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.thrift.TBase<?,?>
    Returns the arguments of this call.
    boolean
     
    int
     
     

    Methods inherited from class com.linecorp.armeria.common.thrift.ThriftMessage

    header

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ThriftCall

      public ThriftCall(org.apache.thrift.protocol.TMessage header, org.apache.thrift.TBase<?,?> args)
      Creates a new instance that contains a Thrift TMessageType.CALL or TMessageType.ONEWAY message.
  • Method Details