| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 interface ServerSocket default _ServerSocket { | 5 interface ServerSocket default _ServerSocket { |
| 6 /** | 6 /** |
| 7 * Constructs a new server socket, binds it to a given address and port, | 7 * Constructs a new server socket, binds it to a given address and port, |
| 8 * and listens on it. | 8 * and listens on it. |
| 9 */ | 9 */ |
| 10 ServerSocket(String bindAddress, int port, int backlog); | 10 ServerSocket(String bindAddress, int port, int backlog); |
| 11 | 11 |
| 12 /** | 12 /** |
| 13 * The connection handler gets called when there is a new incoming | 13 * The connection handler gets called when there is a new incoming |
| 14 * connection on the socket. | 14 * connection on the socket. |
| 15 */ | 15 */ |
| 16 void set onConnection(void callback(Socket connection)); | 16 void set onConnection(void callback(Socket connection)); |
| 17 | 17 |
| 18 /** | 18 /** |
| 19 * The error handler gets called when a socket error occurs. | 19 * The error handler gets called when a socket error occurs. |
| 20 */ | 20 */ |
| 21 void set onError(void callback(Exception e)); | 21 void set onError(void callback(e)); |
| 22 | 22 |
| 23 /** | 23 /** |
| 24 * Returns the port used by this socket. | 24 * Returns the port used by this socket. |
| 25 */ | 25 */ |
| 26 int get port(); | 26 int get port(); |
| 27 | 27 |
| 28 /** | 28 /** |
| 29 * Closes the socket. | 29 * Closes the socket. |
| 30 */ | 30 */ |
| 31 void close(); | 31 void close(); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 /** | 82 /** |
| 83 * The close handler gets called when a the last byte have been read | 83 * The close handler gets called when a the last byte have been read |
| 84 * from a socket. At this point the socket might still be open for | 84 * from a socket. At this point the socket might still be open for |
| 85 * writing for sending more data. | 85 * writing for sending more data. |
| 86 */ | 86 */ |
| 87 void set onClosed(void callback()); | 87 void set onClosed(void callback()); |
| 88 | 88 |
| 89 /** | 89 /** |
| 90 * The error handler gets called when a socket error occurs. | 90 * The error handler gets called when a socket error occurs. |
| 91 */ | 91 */ |
| 92 void set onError(void callback(Exception e)); | 92 void set onError(void callback(e)); |
| 93 | 93 |
| 94 /** | 94 /** |
| 95 * Returns input stream to the socket. | 95 * Returns input stream to the socket. |
| 96 */ | 96 */ |
| 97 InputStream get inputStream(); | 97 InputStream get inputStream(); |
| 98 | 98 |
| 99 /** | 99 /** |
| 100 * Returns output stream of the socket. | 100 * Returns output stream of the socket. |
| 101 */ | 101 */ |
| 102 OutputStream get outputStream(); | 102 OutputStream get outputStream(); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 sb.add(" ($osError)"); | 144 sb.add(" ($osError)"); |
| 145 } | 145 } |
| 146 } else if (osError != null) { | 146 } else if (osError != null) { |
| 147 sb.add(": $osError"); | 147 sb.add(": $osError"); |
| 148 } | 148 } |
| 149 return sb.toString(); | 149 return sb.toString(); |
| 150 } | 150 } |
| 151 final String message; | 151 final String message; |
| 152 final OSError osError; | 152 final OSError osError; |
| 153 } | 153 } |
| OLD | NEW |