Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey-forpeople committed Jan 29, 2025
1 parent 901c225 commit 6654b3e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ Optional<TClaim> transformMessage(String apiVersion, TMessage message)
int writeClaims(Collection<TClaim> objects) throws ProcessingException;

/**
* test.
* Updates the available range of sequence numbers.
*
* @param sequenceNumberRange test
* @param sequenceNumberRange Current range of sequence numbers.
*/
void updateSequenceNumberRange(ClaimSequenceNumberRange sequenceNumberRange);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public interface MessageSource<T> extends AutoCloseable {
MessageSource<T> skipTo(long startingSequenceNumber) throws Exception;

/**
* test.
* Returns the current range of sequence numbers.
*
* @return test
* @return sequence number range
*/
ClaimSequenceNumberRange getSequenceNumberRange();
}
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,10 @@ static class Metrics {
/** The number of insert statements executed. */
private final DistributionSummary insertCount;

/** test. */
/** Maximum available sequence number. */
private final AtomicLong maxSequenceNumber;

/** test. */
/** The value returned by the maxSequenceNumber gauge. */
private final AtomicLong maxSequenceNumberValue;

/**
Expand Down Expand Up @@ -588,9 +588,9 @@ void setLatestSequenceNumber(long value) {
}

/**
* test.
* Sets the {@link #maxSequenceNumber}.
*
* @param value test
* @param value value to set
*/
void setMaxSequenceNumber(long value) {
maxSequenceNumberValue.set(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ public abstract GrpcResponseStream<TResponse> callService(
throws Exception;

/**
* test.
* Calls the service to get the sequence number range.
*
* @param channel test
* @param callOptions test
* @return test
* @param channel an already open channel to the service being called
* @param callOptions the CallOptions object to use for the API call
* @return sequence number range
*/
public abstract ClaimSequenceNumberRange callSequenceNumberRangeService(
ManagedChannel channel, CallOptions callOptions);
Expand Down

0 comments on commit 6654b3e

Please sign in to comment.