blob: 2dac58d0d120f71ac6abdc39113d263397303a6c [file] [log] [blame]
/*
* Copyright 2012 Database Lab., Korea Univ.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
option java_package = "org.apache.tajo.rpc";
option java_outer_classname = "RpcProtos";
message RpcRequest {
required int32 id = 1;
required string method_name = 2;
optional bytes request_message = 3;
}
message RpcResponse {
required int32 id = 1;
optional bytes response_message = 2;
optional string error_message = 3;
}