org.apache.hadoop.hbase.master
Interface ServerListener


@InterfaceAudience.Private
public interface ServerListener

Get notification of server events. The invocations are inline so make sure your implementation is fast else you'll slow hbase.


Method Summary
 void serverAdded(ServerName serverName)
          The server has joined the cluster.
 void serverRemoved(ServerName serverName)
          The server was removed from the cluster.
 

Method Detail

serverAdded

void serverAdded(ServerName serverName)
The server has joined the cluster.

Parameters:
serverName - The remote servers name.

serverRemoved

void serverRemoved(ServerName serverName)
The server was removed from the cluster.

Parameters:
serverName - The remote servers name.


Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.