
com.twitter.finagle.thrift.ThriftClientRequest Maven / Gradle / Ivy
The newest version!
package com.twitter.finagle.thrift;
/**
* Defines a (framed) thrift request, simply composed of the raw
* message & a boolean indicating whether it is a one-shot message or
* not.
*/
public class ThriftClientRequest {
public byte[] message;
public boolean oneway;
public ThriftClientRequest(byte[] message, boolean oneway) {
this.message = message;
this.oneway = oneway;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy