Skip to content

Commit

Permalink
Fix javadoc links.
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlipp committed May 12, 2024
1 parent 47d0103 commit d8f23c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions org.jgrapes.http/src/org/jgrapes/http/events/Request.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
import org.jgrapes.core.Channel;
import org.jgrapes.core.CompletionEvent;
import org.jgrapes.core.Components;
import org.jgrapes.core.Event;
import org.jgrapes.http.ResourcePattern;
import org.jgrapes.http.ResourcePattern.PathSpliterator;
import org.jgrapes.io.events.Output;
import org.jgrapes.net.SocketIOChannel;

/**
Expand All @@ -60,8 +62,8 @@ protected Request(Channel... channels) {
* check that a request has not been {@link fulfilled} before
* firing a {@link Response} event to avoid duplicate response
* events. Handlers that have fired a response event and all
* related {@link Output} events SHOULD {@link Event#stop} the
* request event to avoid unnecessary subsequent invocations of
* related {@link Output} events SHOULD {@link Event#stop stop}
* the request event to avoid unnecessary subsequent invocations of
* handlers. Handlers that want to do "postprocessing" MUST
* therefore listen for the corresponding {@link Completed}
* event instead of defining a handler for the request event
Expand Down
1 change: 1 addition & 0 deletions org.jgrapes.io/src/org/jgrapes/io/util/OutputSupplier.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.jgrapes.io.util;

import org.jgrapes.io.IOSubchannel;
import org.jgrapes.io.events.OpenSocketConnection;
import org.jgrapes.io.events.Output;
import org.jgrapes.net.events.ClientConnected;

Expand Down

0 comments on commit d8f23c2

Please sign in to comment.