HBASE-9536 Fix minor javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1523406 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ee0c193d53
commit
270aad5d55
|
@ -124,19 +124,19 @@ import com.google.protobuf.TextFormat;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An RPC server that hosts protobuf described Services.
|
* An RPC server that hosts protobuf described Services.
|
||||||
*
|
*
|
||||||
* An RpcServer instance has a {@link Listener} that hosts the socket. Listener has fixed number
|
* An RpcServer instance has a Listener that hosts the socket. Listener has fixed number
|
||||||
* of {@link Reader}s in an ExecutorPool, 10 by default. The Listener does an accept and then
|
* of Readers in an ExecutorPool, 10 by default. The Listener does an accept and then
|
||||||
* round robin a Reader is chosen to do the read. The reader is registered on Selector. Read does
|
* round robin a Reader is chosen to do the read. The reader is registered on Selector. Read does
|
||||||
* total read off the channel and the parse from which it makes a Call. The call is wrapped in a
|
* total read off the channel and the parse from which it makes a Call. The call is wrapped in a
|
||||||
* CallRunner and passed to the scheduler to be run. Reader goes back to see if more to be done
|
* CallRunner and passed to the scheduler to be run. Reader goes back to see if more to be done
|
||||||
* and loops till done.
|
* and loops till done.
|
||||||
*
|
*
|
||||||
* <p>Scheduler can be variously implemented but default simple scheduler has handlers to which it
|
* <p>Scheduler can be variously implemented but default simple scheduler has handlers to which it
|
||||||
* has given the queues into which calls (i.e. CallRunner instances) are inserted. Handlers run
|
* has given the queues into which calls (i.e. CallRunner instances) are inserted. Handlers run
|
||||||
* taking from the queue. They run the CallRunner#run method on each item gotten from queue
|
* taking from the queue. They run the CallRunner#run method on each item gotten from queue
|
||||||
* and keep taking while the server is up.
|
* and keep taking while the server is up.
|
||||||
*
|
*
|
||||||
* CallRunner#run executes the call. When done, asks the included Call to put itself on new
|
* CallRunner#run executes the call. When done, asks the included Call to put itself on new
|
||||||
* queue for {@link Responder} to pull from and return result to client.
|
* queue for {@link Responder} to pull from and return result to client.
|
||||||
*
|
*
|
||||||
|
|
|
@ -268,7 +268,7 @@ public interface HLog {
|
||||||
void closeAndDelete() throws IOException;
|
void closeAndDelete() throws IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Same as {@link #appendNoSync(HRegionInfo, TableName, WALEdit, List, long, HTableDescriptor)},
|
* Same as appendNoSync(HRegionInfo, TableName, WALEdit, List, long, HTableDescriptor),
|
||||||
* except it causes a sync on the log
|
* except it causes a sync on the log
|
||||||
*/
|
*/
|
||||||
public void append(HRegionInfo info, TableName tableName, WALEdit edits,
|
public void append(HRegionInfo info, TableName tableName, WALEdit edits,
|
||||||
|
|
Loading…
Reference in New Issue