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
|
@ -125,8 +125,8 @@ 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
|
||||||
|
|
|
@ -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