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.
| 8 | * Thrift invocation. |
| 9 | */ |
| 10 | class Invocation implements Runnable { |
| 11 | private final FrameBuffer frameBuffer; |
| 12 | |
| 13 | public Invocation(final FrameBuffer frameBuffer) { |
| 14 | this.frameBuffer = frameBuffer; |
| 15 | } |
| 16 | |
| 17 | @Override |
| 18 | public void run() { |
| 19 | frameBuffer.invoke(); |
| 20 | } |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected