Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Technoboy- committed Aug 6, 2021
1 parent 9b72b0b commit 5b6fed9
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,31 +71,31 @@ public interface ManagedCursorMXBean {
long getPersistZookeeperErrors();

/**
* Add write cursor size.
* Add write data to a ledger of a cursor (in bytes).
*
* @param size the size of write to cursor
* @param size Size of data written to cursor (in bytes)
*/
void addWriteCursorLedgerSize(long size);

/**
* Add read cursor size.
* Add read data from a ledger of a cursor (in bytes).
*
* @param size the size of read from cursor
* @param size Size of data read from cursor (in bytes)
*/
void addReadCursorLedgerSize(long size);

/**
* @return the size of write to ledger size
* @return the size of data written to cursor (in bytes)
*/
long getWriteCursorLedgerSize();

/**
* @return the size of write to ledger size (accounting for without replicas)
* @return the size of data written to cursor without replicas (in bytes)
*/
long getWriteCursorLedgerLogicalSize();

/**
* @return the size of read from ledger size
* @return the size of data read from cursor (in bytes)
*/
long getReadCursorLedgerSize();

Expand Down

0 comments on commit 5b6fed9

Please sign in to comment.