src/java.net.http/share/classes/java/net/http/WebSocket.java
author prappo
Mon, 19 Mar 2018 14:20:18 +0000
branchhttp-client-branch
changeset 56320 f82729ca8660
parent 56318 2a96e88888b2
child 56328 161f716753d7
permissions -rw-r--r--
http-client-branch: (WebSocket) removed MessagePart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     1
/*
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
     2
 * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     4
 *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    10
 *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    15
 * accompanied this code).
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    16
 *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    20
 *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    23
 * questions.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    24
 */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    25
56089
42208b2f224e http-client-branch: move to standard package and module name
chegar
parents: 56087
diff changeset
    26
package java.net.http;
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    27
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    28
import java.io.IOException;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    29
import java.net.URI;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    30
import java.nio.ByteBuffer;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    31
import java.time.Duration;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    32
import java.util.concurrent.CompletableFuture;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    33
import java.util.concurrent.CompletionStage;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    34
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    35
/**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    36
 * A WebSocket client.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    37
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    38
 * <p> To create a {@code WebSocket} use the {@link HttpClient#newWebSocketBuilder}
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    39
 * method. To close a {@code WebSocket} use one of the {@code sendClose} or
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    40
 * {@code abort} methods.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    41
 *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    42
 * <p> WebSocket messages are sent through a {@code WebSocket} and received
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    43
 * through the {@code WebSocket}'s {@code Listener}. Messages can be sent until
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    44
 * the output is closed, and received until the input is closed.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    45
 * A {@code WebSocket} whose output and input are both closed may be considered
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    46
 * itself closed. To check these states use {@link #isOutputClosed()} and
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    47
 * {@link #isInputClosed()}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    48
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    49
 * <p> Methods that send messages return {@code CompletableFuture} which
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    50
 * completes normally if the message is sent or completes exceptionally if an
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    51
 * error occurs.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    52
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    53
 * <p> To receive a message, first request it. If {@code n} messages are
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    54
 * requested, the listener will receive up to {@code n} more invocations of the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    55
 * designated methods from the {@code WebSocket}. To request messages use
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    56
 * {@link #request(long)}. Request is an additive operation, that is
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    57
 * {@code request(n)} followed by {@code request(m)} is equivalent to
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    58
 * {@code request(n + m)}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    59
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    60
 * <p> When sending or receiving a message in parts, a whole message is
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    61
 * transferred as a sequence of one or more invocations where the last
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    62
 * invocation is identified via an additional method argument.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    63
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    64
 * <p> Unless otherwise stated, {@code null} arguments will cause methods
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    65
 * of {@code WebSocket} to throw {@code NullPointerException}, similarly,
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    66
 * {@code WebSocket} will not pass {@code null} arguments to methods of
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    67
 * {@code Listener}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    68
 *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
    69
 * <p> The state of a {@code WebSocket} is not changed by the invocations that
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
    70
 * throw or return a {@code CompletableFuture} that completes with one of the
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
    71
 * {@code NullPointerException}, {@code IllegalArgumentException},
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
    72
 * {@code IllegalStateException} exceptions.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    73
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    74
 * <p> A {@code WebSocket} invokes methods of its listener in a thread-safe
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    75
 * manner.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    76
 *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    77
 * <p> {@code WebSocket} handles Ping and Close messages automatically (as per
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    78
 * RFC 6455) by replying with Pong and Close messages respectively. If the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    79
 * listener receives Ping or Close messages, no mandatory actions from the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    80
 * listener are required.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    81
 *
56086
ba42a59d3072 http-client-branch: update public API @since tags
chegar
parents: 56055
diff changeset
    82
 * @since 11
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    83
 */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    84
public interface WebSocket {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    85
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    86
    /**
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    87
     * The WebSocket Close message status code (<code>{@value}</code>),
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    88
     * indicating normal closure, meaning that the purpose for which the
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    89
     * connection was established has been fulfilled.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    90
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    91
     * @see #sendClose(int, String)
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    92
     * @see Listener#onClose(WebSocket, int, String)
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    93
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    94
    int NORMAL_CLOSURE = 1000;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    95
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    96
    /**
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    97
     * A builder for creating {@code WebSocket} instances.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
    98
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
    99
     * <p> To obtain a {@code WebSocket} configure a builder as required by
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   100
     * calling intermediate methods (the ones that return the builder itself),
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   101
     * then call {@code buildAsync()}. If an intermediate method is not called,
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   102
     * an appropriate default value (or behavior) will be assumed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   103
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   104
     * <p> Unless otherwise stated, {@code null} arguments will cause methods of
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   105
     * {@code Builder} to throw {@code NullPointerException}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   106
     *
56086
ba42a59d3072 http-client-branch: update public API @since tags
chegar
parents: 56055
diff changeset
   107
     * @since 11
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   108
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   109
    interface Builder {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   110
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   111
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   112
         * Adds the given name-value pair to the list of additional HTTP headers
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   113
         * sent during the opening handshake.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   114
         *
56156
336393c75a93 http-client-branch: add link to illegal WebSocket headers
chegar
parents: 56151
diff changeset
   115
         * <p> Headers defined in
336393c75a93 http-client-branch: add link to illegal WebSocket headers
chegar
parents: 56151
diff changeset
   116
         * <a href="https://tools.ietf.org/html/rfc6455#section-11.3">WebSocket
336393c75a93 http-client-branch: add link to illegal WebSocket headers
chegar
parents: 56151
diff changeset
   117
         * Protocol</a> are illegal. If this method is not invoked, no
336393c75a93 http-client-branch: add link to illegal WebSocket headers
chegar
parents: 56151
diff changeset
   118
         * additional HTTP headers will be sent.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   119
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   120
         * @param name
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   121
         *         the header name
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   122
         * @param value
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   123
         *         the header value
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   124
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   125
         * @return this builder
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   126
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   127
        Builder header(String name, String value);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   128
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   129
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   130
         * Sets a timeout for establishing a WebSocket connection.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   131
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   132
         * <p> If the connection is not established within the specified
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   133
         * duration then building of the {@code WebSocket} will fail with
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   134
         * {@link HttpTimeoutException}. If this method is not invoked then the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   135
         * infinite timeout is assumed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   136
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   137
         * @param timeout
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   138
         *         the timeout, non-{@linkplain Duration#isNegative() negative},
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   139
         *         non-{@linkplain Duration#ZERO ZERO}
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   140
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   141
         * @return this builder
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   142
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   143
        Builder connectTimeout(Duration timeout);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   144
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   145
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   146
         * Sets a request for the given subprotocols.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   147
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   148
         * <p> After the {@code WebSocket} has been built, the actual
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   149
         * subprotocol can be queried via
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   150
         * {@link WebSocket#getSubprotocol WebSocket.getSubprotocol()}.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   151
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   152
         * <p> Subprotocols are specified in the order of preference. The most
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   153
         * preferred subprotocol is specified first. If there are any additional
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   154
         * subprotocols they are enumerated from the most preferred to the least
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   155
         * preferred.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   156
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   157
         * <p> Subprotocols not conforming to the syntax of subprotocol
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   158
         * identifiers are illegal. If this method is not invoked then no
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   159
         * subprotocols will be requested.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   160
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   161
         * @param mostPreferred
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   162
         *         the most preferred subprotocol
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   163
         * @param lesserPreferred
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   164
         *         the lesser preferred subprotocols
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   165
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   166
         * @return this builder
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   167
         */
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   168
        Builder subprotocols(String mostPreferred, String... lesserPreferred);
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   169
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   170
        /**
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   171
         * Builds a {@link WebSocket} connected to the given {@code URI} and
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   172
         * associated with the given {@code Listener}.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   173
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   174
         * <p> Returns a {@code CompletableFuture} which will either complete
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   175
         * normally with the resulting {@code WebSocket} or complete
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   176
         * exceptionally with one of the following errors:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   177
         * <ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   178
         * <li> {@link IOException} -
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   179
         *          if an I/O error occurs
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   180
         * <li> {@link WebSocketHandshakeException} -
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   181
         *          if the opening handshake fails
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   182
         * <li> {@link HttpTimeoutException} -
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   183
         *          if the opening handshake does not complete within
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   184
         *          the timeout
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   185
         * <li> {@link InterruptedException} -
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   186
         *          if the operation is interrupted
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   187
         * <li> {@link SecurityException} -
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   188
         *          if a security manager has been installed and it denies
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   189
         *          {@link java.net.URLPermission access} to {@code uri}.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   190
         *          <a href="HttpRequest.html#securitychecks">Security checks</a>
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   191
         *          contains more information relating to the security context
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   192
         *          in which the the listener is invoked.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   193
         * <li> {@link IllegalArgumentException} -
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   194
         *          if any of the arguments of this builder's methods are
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   195
         *          illegal
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   196
         * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   197
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   198
         * @param uri
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   199
         *         the WebSocket URI
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   200
         * @param listener
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   201
         *         the listener
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   202
         *
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   203
         * @return a {@code CompletableFuture} with the {@code WebSocket}
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   204
         */
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   205
        CompletableFuture<WebSocket> buildAsync(URI uri, Listener listener);
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   206
    }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   207
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   208
    /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   209
     * The receiving interface of {@code WebSocket}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   210
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   211
     * <p> A {@code WebSocket} invokes methods on the associated listener when
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   212
     * it receives messages or encounters events. A {@code WebSocket} invokes
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   213
     * methods on the listener in a thread-safe manner.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   214
     *
56151
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   215
     * <p> Messages received by the {@code Listener} conform to the WebSocket
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   216
     * Protocol, otherwise {@code onError} with a {@link IOException} is invoked.
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   217
     * Any {@code IOException} raised by {@code WebSocket} will result in an
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   218
     * invocation of {@code onError} with that exception. Unless otherwise
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   219
     * stated if a listener's method throws an exception or a
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   220
     * {@code CompletionStage} returned from a method completes exceptionally,
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   221
     * the {@code WebSocket} will invoke {@code onError} with this exception.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   222
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   223
     * <p> If a listener's method returns {@code null} rather than a
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   224
     * {@code CompletionStage}, {@code WebSocket} will behave as if the listener
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   225
     * returned a {@code CompletionStage} that is already completed normally.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   226
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   227
     * @apiNote Methods of {@code Listener} have a {@code WebSocket} parameter
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   228
     * which holds an invoking {@code WebSocket} at runtime. A careful attention
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   229
     * is required if a listener is associated with more than a single
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   230
     * {@code WebSocket}. In this case invocations related to different
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   231
     * instances of {@code WebSocket} may not be ordered and may even happen
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   232
     * concurrently.
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   233
     *
56086
ba42a59d3072 http-client-branch: update public API @since tags
chegar
parents: 56055
diff changeset
   234
     * @since 11
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   235
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   236
    interface Listener {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   237
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   238
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   239
         * A {@code WebSocket} has been connected.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   240
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   241
         * <p> This is the first invocation and it is made at most once. This
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   242
         * method is typically used to make an initial request for messages.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   243
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   244
         * @implSpec The default implementation of this method behaves as if:
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   245
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   246
         * <pre>{@code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   247
         *     webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   248
         * }</pre>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   249
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   250
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   251
         *         the WebSocket that has been connected
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   252
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   253
        default void onOpen(WebSocket webSocket) { webSocket.request(1); }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   254
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   255
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   256
         * A Text message has been received.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   257
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   258
         * <p> Return a {@code CompletionStage} which will be used by the
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   259
         * {@code WebSocket} as an indication it may reclaim the
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   260
         * {@code CharSequence}. Do not access the {@code CharSequence} after
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   261
         * this {@ode CompletionStage} has completed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   262
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   263
         * @implSpec The default implementation of this method behaves as if:
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   264
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   265
         * <pre>{@code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   266
         *     webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   267
         *     return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   268
         * }</pre>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   269
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   270
         * @implNote This method is always invoked with character sequences
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   271
         * which are complete UTF-16 sequences.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   272
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   273
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   274
         *         the WebSocket on which the message has been received
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   275
         * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   276
         *         the message
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   277
         * @param last
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   278
         *         whether this is the last part of the message
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   279
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   280
         * @return a {@code CompletionStage} which completes when the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   281
         * {@code CharSequence} may be reclaimed; or {@code null} if it may be
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   282
         * reclaimed immediately
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   283
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   284
        default CompletionStage<?> onText(WebSocket webSocket,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   285
                                          CharSequence message,
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   286
                                          boolean last) {
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   287
            webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   288
            return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   289
        }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   290
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   291
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   292
         * A Binary message has been received.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   293
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   294
         * <p> This message consists of bytes from the buffer's position to
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   295
         * its limit.
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   296
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   297
         * <p> Return a {@code CompletionStage} which will be used by the
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   298
         * {@code WebSocket} as an indication it may reclaim the
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   299
         * {@code ByteBuffer}. Do not access the {@code ByteBuffer} after
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   300
         * this {@ode CompletionStage} has completed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   301
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   302
         * @implSpec The default implementation of this method behaves as if:
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   303
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   304
         * <pre>{@code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   305
         *     webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   306
         *     return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   307
         * }</pre>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   308
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   309
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   310
         *         the WebSocket on which the message has been received
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   311
         * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   312
         *         the message
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   313
         * @param last
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   314
         *         whether this is the last part of the message
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   315
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   316
         * @return a {@code CompletionStage} which completes when the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   317
         * {@code ByteBuffer} may be reclaimed; or {@code null} if it may be
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   318
         * reclaimed immediately
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   319
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   320
        default CompletionStage<?> onBinary(WebSocket webSocket,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   321
                                            ByteBuffer message,
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   322
                                            boolean last) {
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   323
            webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   324
            return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   325
        }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   326
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   327
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   328
         * A Ping message has been received.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   329
         *
56151
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   330
         * <p> As guaranteed by the WebSocket Protocol, the message consists of
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   331
         * not more than {@code 125} bytes. These bytes are located from the
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   332
         * buffer's position to its limit.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   333
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   334
         * <p> Return a {@code CompletionStage} which will be used by the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   335
         * {@code WebSocket} as a signal it may reclaim the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   336
         * {@code ByteBuffer}. Do not access the {@code ByteBuffer} after
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   337
         * this {@ode CompletionStage} has completed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   338
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   339
         * @implSpec The default implementation of this method behaves as if:
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   340
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   341
         * <pre>{@code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   342
         *     webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   343
         *     return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   344
         * }</pre>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   345
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   346
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   347
         *         the WebSocket on which the message has been received
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   348
         * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   349
         *         the message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   350
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   351
         * @return a {@code CompletionStage} which completes when the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   352
         * {@code ByteBuffer} may be reclaimed; or {@code null} if it may be
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   353
         * reclaimed immediately
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   354
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   355
        default CompletionStage<?> onPing(WebSocket webSocket,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   356
                                          ByteBuffer message) {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   357
            webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   358
            return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   359
        }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   360
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   361
        /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   362
         * A Pong message has been received.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   363
         *
56151
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   364
         * <p> As guaranteed by the WebSocket Protocol, the message consists of
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   365
         * not more than {@code 125} bytes. These bytes are located from the
eae2b2d7fe52 http-client-branch: clarify strict size requirement for received ping/pong messages
chegar
parents: 56089
diff changeset
   366
         * buffer's position to its limit.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   367
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   368
         * <p> Return a {@code CompletionStage} which will be used by the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   369
         * {@code WebSocket} as a signal it may reclaim the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   370
         * {@code ByteBuffer}. Do not access the {@code ByteBuffer} after
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   371
         * this {@ode CompletionStage} has completed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   372
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   373
         * @implSpec The default implementation of this method behaves as if:
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   374
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   375
         * <pre>{@code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   376
         *     webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   377
         *     return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   378
         * }</pre>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   379
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   380
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   381
         *         the WebSocket on which the message has been received
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   382
         * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   383
         *         the message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   384
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   385
         * @return a {@code CompletionStage} which completes when the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   386
         * {@code ByteBuffer} may be reclaimed; or {@code null} if it may be
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   387
         * reclaimed immediately
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   388
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   389
        default CompletionStage<?> onPong(WebSocket webSocket,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   390
                                          ByteBuffer message) {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   391
            webSocket.request(1);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   392
            return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   393
        }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   394
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   395
        /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   396
         * Receives a Close message indicating the {@code WebSocket}'s input has
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   397
         * been closed.
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   398
         *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   399
         * <p> This is the last invocation from the {@code WebSocket}. By the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   400
         * time this invocation begins the {@code WebSocket}'s input will have
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   401
         * been closed. Be prepared to receive this invocation at any time after
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   402
         * {@code onOpen} regardless of whether or not any messages have been
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   403
         * requested from the {@code WebSocket}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   404
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   405
         * <p> A Close message consists of a status code and a reason for
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   406
         * closing. The status code is an integer from the range
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   407
         * {@code 1000 <= code <= 65535}. The {@code reason} is a string which
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   408
         * has an UTF-8 representation not longer than {@code 123} bytes.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   409
         *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   410
         * <p> If the {@code WebSocket}'s output is not already closed, the
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   411
         * {@code CompletionStage} returned by this method will be used as an
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   412
         * indication that the {@code WebSocket}'s output may be closed. The
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   413
         * {@code WebSocket} will close its output at the earliest of completion
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   414
         * of the returned {@code CompletionStage} or invoking either of the
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   415
         * {@code sendClose} or {@code abort} methods.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   416
         *
56039
01739771e48b http-client-branch: add api/impl notes to WebSocket onClose
chegar
parents: 55973
diff changeset
   417
         * @apiNote Returning a {@code CompletionStage} that never completes,
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   418
         * effectively disables the reciprocating closure of the output.
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   419
         *
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   420
         * <p> To specify a custom closure code and/or reason code the sendClose
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   421
         * may be invoked from inside onClose call:
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   422
         * <pre>{@code
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   423
         *  public CompletionStage<?> onClose(WebSocket webSocket,
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   424
         *                             int statusCode,
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   425
         *                             String reason) {
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   426
         *      webSocket.sendClose(CUSTOM_STATUS_CODE, CUSTOM_REASON);
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   427
         *      return new CompletableFuture<Void>();
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   428
         *  }
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   429
         * }</pre>
56039
01739771e48b http-client-branch: add api/impl notes to WebSocket onClose
chegar
parents: 55973
diff changeset
   430
         *
01739771e48b http-client-branch: add api/impl notes to WebSocket onClose
chegar
parents: 55973
diff changeset
   431
         * @implSpec The default implementation of this method returns
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   432
         * {@code null}, indicating that the output should be closed
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   433
         * immediately.
56039
01739771e48b http-client-branch: add api/impl notes to WebSocket onClose
chegar
parents: 55973
diff changeset
   434
         *
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   435
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   436
         *         the WebSocket on which the message has been received
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   437
         * @param statusCode
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   438
         *         the status code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   439
         * @param reason
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   440
         *         the reason
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   441
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   442
         * @return a {@code CompletionStage} which completes when the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   443
         * {@code WebSocket} may be closed; or {@code null} if it may be
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   444
         * closed immediately
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   445
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   446
        default CompletionStage<?> onClose(WebSocket webSocket,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   447
                                           int statusCode,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   448
                                           String reason) {
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   449
            return null;
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   450
        }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   451
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   452
        /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   453
         * An error has occurred.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   454
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   455
         * <p> This is the last invocation from the {@code WebSocket}. By the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   456
         * time this invocation begins both {@code WebSocket}'s input and output
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   457
         * will have been closed. Be prepared to receive this invocation at any
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   458
         * time after {@code onOpen} regardless of whether or not any messages
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   459
         * have been requested from the {@code WebSocket}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   460
         *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   461
         * <p> If an exception is thrown from this method, resulting behavior is
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   462
         * undefined.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   463
         *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   464
         * @param webSocket
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   465
         *         the WebSocket on which the error has occurred
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   466
         * @param error
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   467
         *         the error
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   468
         */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   469
        default void onError(WebSocket webSocket, Throwable error) { }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   470
    }
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   471
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   472
    /**
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   473
     * Sends a Text message with characters from the given {@code CharSequence}.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   474
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   475
     * <p> The character sequence must not be modified until the
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   476
     * {@code CompletableFuture} returned from this method has completed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   477
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   478
     * <p> A {@code CompletableFuture} returned from this method can
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   479
     * complete exceptionally with:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   480
     * <ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   481
     * <li> {@link IllegalStateException} -
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   482
     *          if the previous Text or Binary message has not been sent yet
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   483
     *          or if a previous Binary message has been sent with
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   484
     *              {@code last} equals {@code false}
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   485
     * <li> {@link IOException} -
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   486
     *          if an I/O error occurs, or if the output is closed
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   487
     * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   488
     *
56263
4933a477d628 http-client-branch: (WebSocket) impl change
prappo
parents: 56156
diff changeset
   489
     * @implNote If a partial or malformed UTF-16 sequence is passed to this
4933a477d628 http-client-branch: (WebSocket) impl change
prappo
parents: 56156
diff changeset
   490
     * method, a {@code CompletableFuture} returned will complete exceptionally
4933a477d628 http-client-branch: (WebSocket) impl change
prappo
parents: 56156
diff changeset
   491
     * with {@code IOException}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   492
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   493
     * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   494
     *         the message
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   495
     * @param last
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   496
     *         {@code true} if this is the last part of the message,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   497
     *         {@code false} otherwise
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   498
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   499
     * @return a {@code CompletableFuture} that completes, with this
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   500
     * {@code WebSocket}, when the message has been sent
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   501
     */
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   502
    CompletableFuture<WebSocket> sendText(CharSequence message, boolean last);
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   503
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   504
    /**
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   505
     * Sends a Binary message with bytes from the given {@code ByteBuffer}.
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   506
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   507
     * <p> The message consists of bytes from the buffer's position to its
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   508
     * limit. Upon normal completion of a {@code CompletableFuture} returned
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   509
     * from this method the buffer will have no remaining bytes. The buffer must
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   510
     * not be accessed until after that.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   511
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   512
     * <p> The {@code CompletableFuture} returned from this method can
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   513
     * complete exceptionally with:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   514
     * <ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   515
     * <li> {@link IllegalStateException} -
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   516
     *          if the previous Binary or Text message has not been sent yet
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   517
     *          or if a previous Text message has been sent with
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   518
     *              {@code last} equals {@code false}
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   519
     * <li> {@link IOException} -
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   520
     *          if an I/O error occurs, or if the output is closed
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   521
     * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   522
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   523
     * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   524
     *         the message
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   525
     * @param last
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   526
     *         {@code true} if this is the last part of the message,
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   527
     *         {@code false} otherwise
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   528
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   529
     * @return a {@code CompletableFuture} that completes, with this
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   530
     * {@code WebSocket}, when the message has been sent
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   531
     */
56320
f82729ca8660 http-client-branch: (WebSocket) removed MessagePart
prappo
parents: 56318
diff changeset
   532
    CompletableFuture<WebSocket> sendBinary(ByteBuffer message, boolean last);
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   533
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   534
    /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   535
     * Sends a Ping message with bytes from the given {@code ByteBuffer}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   536
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   537
     * <p> The message consists of not more than {@code 125} bytes from the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   538
     * buffer's position to its limit. Upon normal completion of a
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   539
     * {@code CompletableFuture} returned from this method the buffer will
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   540
     * have no remaining bytes. The buffer must not be accessed until after that.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   541
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   542
     * <p> The {@code CompletableFuture} returned from this method can
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   543
     * complete exceptionally with:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   544
     * <ul>
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   545
     * <li> {@link IllegalStateException} -
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   546
     *          if the previous Ping or Pong message has not been sent yet
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   547
     * <li> {@link IllegalArgumentException} -
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   548
     *          if the message is too long
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   549
     * <li> {@link IOException} -
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   550
     *          if an I/O error occurs, or if the output is closed
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   551
     * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   552
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   553
     * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   554
     *         the message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   555
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   556
     * @return a {@code CompletableFuture} that completes, with this
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   557
     * {@code WebSocket}, when the Ping message has been sent
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   558
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   559
    CompletableFuture<WebSocket> sendPing(ByteBuffer message);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   560
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   561
    /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   562
     * Sends a Pong message with bytes from the given {@code ByteBuffer}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   563
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   564
     * <p> The message consists of not more than {@code 125} bytes from the
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   565
     * buffer's position to its limit. Upon normal completion of a
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   566
     * {@code CompletableFuture} returned from this method the buffer will have
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   567
     * no remaining bytes. The buffer must not be accessed until after that.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   568
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   569
     * <p> The {@code CompletableFuture} returned from this method can
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   570
     * complete exceptionally with:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   571
     * <ul>
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   572
     * <li> {@link IllegalStateException} -
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   573
     *          if the previous Ping or Pong message has not been sent yet
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   574
     * <li> {@link IllegalArgumentException} -
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   575
     *          if the message is too long
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   576
     * <li> {@link IOException} -
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   577
     *          if an I/O error occurs, or if the output is closed
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   578
     * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   579
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   580
     * @param message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   581
     *         the message
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   582
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   583
     * @return a {@code CompletableFuture} that completes, with this
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   584
     * {@code WebSocket}, when the Pong message has been sent
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   585
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   586
    CompletableFuture<WebSocket> sendPong(ByteBuffer message);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   587
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   588
    /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   589
     * Initiates an orderly closure of this {@code WebSocket}'s output by
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   590
     * sending a Close message with the given status code and the reason.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   591
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   592
     * <p> The {@code statusCode} is an integer from the range
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   593
     * {@code 1000 <= code <= 4999}. Status codes {@code 1002}, {@code 1003},
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   594
     * {@code 1006}, {@code 1007}, {@code 1009}, {@code 1010}, {@code 1012},
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   595
     * {@code 1013} and {@code 1015} are illegal. Behaviour in respect to other
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   596
     * status codes is implementation-specific. The {@code reason} is a string
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   597
     * that has an UTF-8 representation not longer than {@code 123} bytes.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   598
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   599
     * <p> A {@code CompletableFuture} returned from this method can
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   600
     * complete exceptionally with:
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   601
     * <ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   602
     * <li> {@link IllegalArgumentException} -
56263
4933a477d628 http-client-branch: (WebSocket) impl change
prappo
parents: 56156
diff changeset
   603
     *          if {@code statusCode} is illegal
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   604
     * <li> {@link IOException} -
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   605
     *          if an I/O error occurs, or if the output is closed
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   606
     * </ul>
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   607
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   608
     * <p> Unless the {@code CompletableFuture} returned from this method
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   609
     * completes with {@code IllegalArgumentException}, or the method throws
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   610
     * {@code NullPointerException}, the output will be closed.
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   611
     *
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   612
     * <p> If not already closed, the input remains open until it is
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   613
     * {@linkplain Listener#onClose(WebSocket, int, String) closed} by the server,
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   614
     * or {@code abort} is invoked, or an
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   615
     * {@linkplain Listener#onError(WebSocket, Throwable) error} occurs.
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   616
     *
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   617
     * @apiNote Use the provided integer constant {@link #NORMAL_CLOSURE} as a
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   618
     * status code and an empty string as a reason in a typical case
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   619
     * <pre>{@code
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   620
     *     CompletableFuture<WebSocket> webSocket = ...
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   621
     *     webSocket.thenCompose(ws -> ws.sendText("Hello, ", false))
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   622
     *              .thenCompose(ws -> ws.sendText("world!", true))
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   623
     *              .thenCompose(ws -> ws.sendClose(WebSocket.NORMAL_CLOSURE, ""))
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   624
     *              .join();
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   625
     * }</pre>
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   626
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   627
     * @param statusCode
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   628
     *         the status code
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   629
     * @param reason
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   630
     *         the reason
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   631
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   632
     * @return a {@code CompletableFuture} that completes, with this
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   633
     * {@code WebSocket}, when the Close message has been sent
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   634
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   635
    CompletableFuture<WebSocket> sendClose(int statusCode, String reason);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   636
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   637
    /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   638
     * Requests {@code n} more messages from this {@code WebSocket}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   639
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   640
     * <p> This {@code WebSocket} will invoke its listener's {@code onText},
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   641
     * {@code onBinary}, {@code onPing}, {@code onPong} or {@code onClose}
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   642
     * methods up to {@code n} more times.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   643
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   644
     * @param n
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   645
     *         the number of messages requested
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   646
     *
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   647
     * @throws IllegalArgumentException
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   648
     *         if {@code n <= 0}
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   649
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   650
    void request(long n);
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   651
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   652
    /**
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   653
     * Returns the subprotocol for this {@code WebSocket}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   654
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   655
     * @return the subprotocol for this {@code WebSocket}, or an empty
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   656
     * {@code String} if there's no subprotocol
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   657
     */
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   658
    String getSubprotocol();
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   659
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   660
    /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   661
     * Tells whether this {@code WebSocket}'s output is closed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   662
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   663
     * <p> If this method returns {@code true}, subsequent invocations will also
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   664
     * return {@code true}.
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   665
     *
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   666
     * @return {@code true} if closed, {@code false} otherwise
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   667
     */
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   668
    boolean isOutputClosed();
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   669
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   670
    /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   671
     * Tells whether this {@code WebSocket}'s input is closed.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   672
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   673
     * <p> If this method returns {@code true}, subsequent invocations will also
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   674
     * return {@code true}.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   675
     *
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   676
     * @return {@code true} if closed, {@code false} otherwise
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   677
     */
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   678
    boolean isInputClosed();
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   679
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   680
    /**
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   681
     * Closes this {@code WebSocket}'s input and output abruptly.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   682
     *
56055
7d387d151a3e http-client-branch: (WebSocket) tiny spec simplification + test
prappo
parents: 56039
diff changeset
   683
     * <p> When this method returns both the input and the output will have been
56318
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   684
     * closed. Any pending send operations will fail with {@code IOException}.
2a96e88888b2 http-client-branch: (WebSocket) API changes + test;
prappo
parents: 56263
diff changeset
   685
     * Subsequent invocations of {@code abort()} will have no effect.
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   686
     */
48083
b1c1b4ef4be2 8191494: Refresh incubating HTTP Client
chegar
parents: 47216
diff changeset
   687
    void abort();
42460
7133f144981a 8170648: Move java.net.http package out of Java SE to incubator namespace
michaelm
parents:
diff changeset
   688
}