summaryrefslogtreecommitdiff
path: root/lib/java/src/main/java/org/apache/thrift/server/Invocation.java
blob: 423b40bf35eaab484fd0c31b85c8184cca1debc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.apache.thrift.server;

import org.apache.thrift.server.AbstractNonblockingServer.FrameBuffer;

/**
 * An Invocation represents a method call that is prepared to execute, given an idle worker thread.
 * It contains the input and output protocols the thread's processor should use to perform the usual
 * Thrift invocation.
 */
class Invocation implements Runnable {
  private final FrameBuffer frameBuffer;

  public Invocation(final FrameBuffer frameBuffer) {
    this.frameBuffer = frameBuffer;
  }

  @Override
  public void run() {
    frameBuffer.invoke();
  }
}