blob: 11b2f7883a01e3fa414ac57e4ed9ea1a9ee4da3b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.hadoop.hbase.client;
import com.google.protobuf.RpcCallback;
import com.google.protobuf.RpcController;
import org.apache.yetus.audience.InterfaceAudience;
/**
* Client side rpc controller for coprocessor implementation. It is only used to pass error.
*/
@InterfaceAudience.Private
public class ClientCoprocessorRpcController implements RpcController {
private Throwable error;
@Override
public void reset() {
}
@Override
public boolean failed() {
return error != null;
}
@Override
public String errorText() {
return error != null ? error.getMessage() : null;
}
@Override
public void startCancel() {
throw new UnsupportedOperationException();
}
@Override
public void setFailed(String reason) {
throw new UnsupportedOperationException();
}
@Override
public boolean isCanceled() {
return false;
}
@Override
public void notifyOnCancel(RpcCallback<Object> callback) {
throw new UnsupportedOperationException();
}
public void setFailed(Throwable error) {
this.error = error;
}
public Throwable getFailed() {
return error;
}
}