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