throws TException
{
boolean isOneWayMethod = false;
// Create a temporary transport wrapping the output buffer, so that we can read the method name for this message
TChannelBufferInputTransport requestReadTransport = new TChannelBufferInputTransport(requestBufferTransport.getOutputBuffer().duplicate());
TProtocol protocol = channel.getProtocolFactory().getOutputProtocolFactory().getProtocol(requestReadTransport);
TMessage message = protocol.readMessageBegin();
String methodName = message.name;
isOneWayMethod = clientClassHasReceiveHelperMethod(methodName);