本文整理汇总了Java中org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse.getServerInfo方法的典型用法代码示例。如果您正苦于以下问题:Java GetServerInfoResponse.getServerInfo方法的具体用法?Java GetServerInfoResponse.getServerInfo怎么用?Java GetServerInfoResponse.getServerInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse
的用法示例。
在下文中一共展示了GetServerInfoResponse.getServerInfo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getServerInfo
import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse; //导入方法依赖的package包/类
/**
* A helper to get the info of a region server using admin protocol.
* @return the server name
*/
public static ServerInfo getServerInfo(final RpcController controller,
final AdminService.BlockingInterface admin)
throws IOException {
GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
try {
GetServerInfoResponse response = admin.getServerInfo(controller, request);
return response.getServerInfo();
} catch (ServiceException se) {
throw getRemoteException(se);
}
}
示例2: getServerInfo
import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse; //导入方法依赖的package包/类
/**
* A helper to get the info of a region server using admin protocol.
*
* @param admin
* @return the server name
* @throws IOException
*/
public static ServerInfo getServerInfo(final AdminService.BlockingInterface admin)
throws IOException {
GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
try {
GetServerInfoResponse response = admin.getServerInfo(null, request);
return response.getServerInfo();
} catch (ServiceException se) {
throw getRemoteException(se);
}
}
示例3: getServerInfo
import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse; //导入方法依赖的package包/类
/**
* A helper to get the info of a region server using admin protocol.
* @return the server name
*/
public static ServerInfo getServerInfo(final RpcController controller,
final AdminService.BlockingInterface admin)
throws IOException {
GetServerInfoRequest request = buildGetServerInfoRequest();
try {
GetServerInfoResponse response = admin.getServerInfo(controller, request);
return response.getServerInfo();
} catch (ServiceException se) {
throw getRemoteException(se);
}
}
示例4: getServerInfo
import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.GetServerInfoResponse; //导入方法依赖的package包/类
/**
* A helper to get the info of a region server using admin protocol.
*
* @param admin
* @return the server name
* @throws IOException
*/
public static ServerInfo getServerInfo(
final AdminProtocol admin) throws IOException {
GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
try {
GetServerInfoResponse response = admin.getServerInfo(null, request);
return response.getServerInfo();
} catch (ServiceException se) {
throw getRemoteException(se);
}
}