parent
f721862d6f
commit
9ffd8622f6
|
|
@ -1876,4 +1876,4 @@
|
||||||
<id>integration-test</id>
|
<id>integration-test</id>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|
@ -111,7 +111,7 @@ public class Restarter {
|
||||||
* @param thread the source thread
|
* @param thread the source thread
|
||||||
* @param args the application arguments
|
* @param args the application arguments
|
||||||
* @param forceReferenceCleanup if soft/weak reference cleanup should be forced
|
* @param forceReferenceCleanup if soft/weak reference cleanup should be forced
|
||||||
* @param initializer
|
* @param initializer the restart initializer
|
||||||
* @see #initialize(String[])
|
* @see #initialize(String[])
|
||||||
*/
|
*/
|
||||||
protected Restarter(Thread thread, String[] args, boolean forceReferenceCleanup,
|
protected Restarter(Thread thread, String[] args, boolean forceReferenceCleanup,
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ public interface TunnelConnection {
|
||||||
* Open the tunnel connection.
|
* Open the tunnel connection.
|
||||||
* @param incomingChannel A {@link WritableByteChannel} that should be used to write
|
* @param incomingChannel A {@link WritableByteChannel} that should be used to write
|
||||||
* any incoming data received from the remote server.
|
* any incoming data received from the remote server.
|
||||||
* @param closeable
|
* @param closeable a closeable to call when the channel is closed
|
||||||
* @return A {@link WritableByteChannel} that should be used to send any outgoing data
|
* @return A {@link WritableByteChannel} that should be used to send any outgoing data
|
||||||
* destined for the remote server
|
* destined for the remote server
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
|
|
|
||||||
|
|
@ -46,16 +46,16 @@ import org.springframework.util.Assert;
|
||||||
* <pre>
|
* <pre>
|
||||||
* [ CLIENT ] [ SERVER ]
|
* [ CLIENT ] [ SERVER ]
|
||||||
* | (a) Initial empty request |
|
* | (a) Initial empty request |
|
||||||
* |------------------------------}|
|
* |------------------------------>|
|
||||||
* | (b) Data I |
|
* | (b) Data I |
|
||||||
* --}|------------------------------}|---}
|
* -->|------------------------------>|--->
|
||||||
* | Response I (a) |
|
* | Response I (a) |
|
||||||
* {--|<------------------------------|{---
|
* <--|<------------------------------|<---
|
||||||
* | |
|
* | |
|
||||||
* | (c) Data II |
|
* | (c) Data II |
|
||||||
* --}|------------------------------}|---}
|
* -->|------------------------------>|--->
|
||||||
* | Response II (b) |
|
* | Response II (b) |
|
||||||
* {--|{------------------------------|{---
|
* <--|<------------------------------|<---
|
||||||
* . .
|
* . .
|
||||||
* . .
|
* . .
|
||||||
* </pre>
|
* </pre>
|
||||||
|
|
@ -66,8 +66,7 @@ import org.springframework.util.Assert;
|
||||||
* Requests should be made using HTTP GET or POST (depending if there is a payload), with
|
* Requests should be made using HTTP GET or POST (depending if there is a payload), with
|
||||||
* any payload contained in the body. The following response codes can be returned from
|
* any payload contained in the body. The following response codes can be returned from
|
||||||
* the server:
|
* the server:
|
||||||
* <p>
|
* <table summary="Response Codes">
|
||||||
* <table>
|
|
||||||
* <tr>
|
* <tr>
|
||||||
* <th>Status</th>
|
* <th>Status</th>
|
||||||
* <th>Meaning</th>
|
* <th>Meaning</th>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue