@Override
protected void handle(BitServerConnection connection, int rpcType, ByteBuf pBody, ByteBuf body, ResponseSender sender) throws RpcException {
assert rpcType == RpcType.REQ_RECORD_BATCH_VALUE;
FragmentRecordBatch fragmentBatch = get(pBody, FragmentRecordBatch.PARSER);
FragmentHandle handle = fragmentBatch.getHandle();
try {
FragmentManager manager = workBus.getOrCreateFragmentManager(fragmentBatch.getHandle());
if (manager == null) {
if (body != null) {
body.release();
}
}