8000 Javadoc cleanup by yschimke · Pull Request #376 · rsocket/rsocket-java · GitHub
[go: up one dir, main page]

Skip to content

Javadoc cleanup #376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public ParseMarble(Subscriber<? super Payload> s, String agent) {
* be sent. In other words, it allows onNext and onComplete to be sent even if we've sent all the
* values we've been requested of.
*
* @param m
* @param m marble string
*/
public synchronized void add(String m) {
consoleUtils.info("adding " + m);
Expand All @@ -110,7 +110,7 @@ public synchronized void add(String m) {
* this method unblocks the sendLatch as well as the parseLatch if we have more requests, as it
* allows both emitted and non-emitted symbols to be sent,
*
* @param n
* @param n credits to add
*/
public synchronized void request(long n) {
numRequested += n;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public interface EventLoop {
* Executes an IntSupplier that returns a number greater than 0 if it wants the the event loop to
* keep processing items, and zero its okay for the eventloop to execute an idle strategy
*
* @param r
* @param r signal for roughly how many items could be processed.
* @return whether items could be processed
*/
boolean execute(IntSupplier r);
}
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public AeronChannel(
/**
* Subscribes to a stream of DirectBuffers and sends the to an Aeron Publisher
*
* @param in
* @return
* @param in the publisher of buffers.
* @return Mono the completes when all publishers have been sent.
*/
public Mono<Void> send(Flux<? extends DirectBuffer> in) {
AeronInSubscriber inSubscriber = new AeronInSubscriber(name, destination);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ private AeronClientConfig(
*
* @param receiveSocketAddress the address the channels receives data on
* @param sendSocketAddress the address the channel sends data too
* @param receiveStreamId receiving stream id
* @param sendStreamId the sending stream id
* @param eventLoop event loop for this client
* @return new {@code AeronClientConfig}
*/
public static AeronClientConfig create(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ interface StartedServer extends Closeable {
* Blocks till this server shutsdown till the passed duration.
*
* <p><em>This does not shutdown the server.</em>
*
* @param duration the number of durationUnit to wait
* @param durationUnit the unit e.g. seconds
*/
void awaitShutdown(long duration, TimeUnit durationUnit);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ public static LocalServerTransport createEphemeral() {

/**
* Remove an instance from the JVM registry.
*
* @param name the local transport instance to free.
*/
public static void dispose(String name) {
registry.remove(name);
Expand Down
0