forked from TooTallNate/Java-WebSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-all.html
More file actions
1010 lines (993 loc) · 96.5 KB
/
index-all.html
File metadata and controls
1010 lines (993 loc) · 96.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_29) on Sat Jan 28 11:34:21 PST 2012 -->
<TITLE>
Index
</TITLE>
<META NAME="date" CONTENT="2012-01-28">
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_K_">K</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#abort()"><B>abort()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#abort(java.lang.String)"><B>abort(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#acceptHandshakeAsClient(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsClient(Handshakedata, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#acceptHandshakeAsClient(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsClient(Handshakedata, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#acceptHandshakeAsClient(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsClient(Handshakedata, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#acceptHandshakeAsClient(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsClient(Handshakedata, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#acceptHandshakeAsServer(net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsServer(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#acceptHandshakeAsServer(net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsServer(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_17.html#acceptHandshakeAsServer(net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsServer(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_17.html" title="class in net.tootallnate.websocket.drafts">Draft_17</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#acceptHandshakeAsServer(net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsServer(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#acceptHandshakeAsServer(net.tootallnate.websocket.Handshakedata)"><B>acceptHandshakeAsServer(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Framedata.html#append(net.tootallnate.websocket.Framedata)"><B>append(Framedata)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket">Framedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#append(net.tootallnate.websocket.Framedata)"><B>append(Framedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#asciiBytes(java.lang.String)"><B>asciiBytes(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket"><B>Base64</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD>Encodes and decodes to and from Base64 notation.<DT><A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket"><B>Base64.InputStream</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD>A <A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.InputStream</CODE></A> will read data from another
<tt>java.io.InputStream</tt>, given in the constructor,
and encode/decode to/from Base64 notation on the fly.<DT><A HREF="./net/tootallnate/websocket/Base64.InputStream.html#Base64.InputStream(java.io.InputStream)"><B>Base64.InputStream(InputStream)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket">Base64.InputStream</A>
<DD>Constructs a <A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.InputStream</CODE></A> in DECODE mode.
<DT><A HREF="./net/tootallnate/websocket/Base64.InputStream.html#Base64.InputStream(java.io.InputStream, int)"><B>Base64.InputStream(InputStream, int)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket">Base64.InputStream</A>
<DD>Constructs a <A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.InputStream</CODE></A> in
either ENCODE or DECODE mode.
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket"><B>Base64.OutputStream</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD>A <A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.OutputStream</CODE></A> will write data to another
<tt>java.io.OutputStream</tt>, given in the constructor,
and encode/decode to/from Base64 notation on the fly.<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#Base64.OutputStream(java.io.OutputStream)"><B>Base64.OutputStream(OutputStream)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Constructs a <A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.OutputStream</CODE></A> in ENCODE mode.
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#Base64.OutputStream(java.io.OutputStream, int)"><B>Base64.OutputStream(OutputStream, int)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Constructs a <A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket"><CODE>Base64.OutputStream</CODE></A> in
either ENCODE or DECODE mode.
<DT><A HREF="./net/tootallnate/websocket/Draft.html#basicAccept(net.tootallnate.websocket.Handshakedata)"><B>basicAccept(Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket"><B>Charsetfunctions</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#Charsetfunctions()"><B>Charsetfunctions()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#checkAlloc(int)"><B>checkAlloc(int)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#close()"><B>close()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Flushes and closes (I think, in the superclass) the stream.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#close()"><B>close()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>Closes the underlying SocketChannel, and calls the listener's onClose
event handler.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#close()"><B>close()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Calls <var>close</var> on the underlying SocketChannel, which in turn
closes the socket connection, and ends the client socket thread.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#connect()"><B>connect()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Starts a background thread that attempts and maintains a WebSocket
connection to the URI specified in the constructor or via <var>setURI</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#connections()"><B>connections()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Returns a WebSocket[] of currently connected clients.
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#CR"><B>CR</B></A> -
Static variable in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>The byte representing CR, or Carriage Return, or \r
<DT><A HREF="./net/tootallnate/websocket/Draft.html#createBinaryFrame(net.tootallnate.websocket.Framedata)"><B>createBinaryFrame(Framedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#createBinaryFrame(net.tootallnate.websocket.Framedata)"><B>createBinaryFrame(Framedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#createBinaryFrame(net.tootallnate.websocket.Framedata)"><B>createBinaryFrame(Framedata)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#createChallenge(java.lang.String, java.lang.String, byte[])"><B>createChallenge(String, String, byte[])</B></A> -
Static method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#createFrames(byte[], boolean)"><B>createFrames(byte[], boolean)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#createFrames(java.lang.String, boolean)"><B>createFrames(String, boolean)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#createFrames(byte[], boolean)"><B>createFrames(byte[], boolean)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#createFrames(java.lang.String, boolean)"><B>createFrames(String, boolean)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#createFrames(byte[], boolean)"><B>createFrames(byte[], boolean)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#createFrames(java.lang.String, boolean)"><B>createFrames(String, boolean)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#createHandshake(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.WebSocket.Role)"><B>createHandshake(Handshakedata, WebSocket.Role)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#createHandshake(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.WebSocket.Role, boolean)"><B>createHandshake(Handshakedata, WebSocket.Role, boolean)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#DEBUG"><B>DEBUG</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Base64.html#DECODE"><B>DECODE</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Specify decoding in first bit.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decode(byte[])"><B>decode(byte[])</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Low-level access to decoding ASCII characters in
the form of a byte array.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decode(byte[], int, int, int)"><B>decode(byte[], int, int, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Low-level access to decoding ASCII characters in
the form of a byte array.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decode(java.lang.String)"><B>decode(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Decodes data from Base64 notation, automatically
detecting gzip-compressed data and decompressing it.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decode(java.lang.String, int)"><B>decode(String, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Decodes data from Base64 notation, automatically
detecting gzip-compressed data and decompressing it.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decodeFileToFile(java.lang.String, java.lang.String)"><B>decodeFileToFile(String, String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Reads <tt>infile</tt> and decodes it to <tt>outfile</tt>.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decodeFromFile(java.lang.String)"><B>decodeFromFile(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Convenience method for reading a base64-encoded
file and decoding it.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decodeToFile(java.lang.String, java.lang.String)"><B>decodeToFile(String, String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Convenience method for decoding data to a file.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decodeToObject(java.lang.String)"><B>decodeToObject(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Attempts to decode Base64 data and deserialize a Java
Object within.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#decodeToObject(java.lang.String, int, java.lang.ClassLoader)"><B>decodeToObject(String, int, ClassLoader)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Attempts to decode Base64 data and deserialize a Java
Object within.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#DEFAULT_PORT"><B>DEFAULT_PORT</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>The default port of WebSockets, as defined in the spec.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#DO_BREAK_LINES"><B>DO_BREAK_LINES</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Do break lines when encoding.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#DONT_GUNZIP"><B>DONT_GUNZIP</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Specify that gzipped data should <em>not</em> be automatically gunzipped.
<DT><A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket"><B>Draft</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/Draft.html#Draft()"><B>Draft()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.HandshakeState.html" title="enum in net.tootallnate.websocket"><B>Draft.HandshakeState</B></A> - Enum in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts"><B>Draft_10</B></A> - Class in <A HREF="./net/tootallnate/websocket/drafts/package-summary.html">net.tootallnate.websocket.drafts</A><DD> <DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#Draft_10()"><B>Draft_10()</B></A> -
Constructor for class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_17.html" title="class in net.tootallnate.websocket.drafts"><B>Draft_17</B></A> - Class in <A HREF="./net/tootallnate/websocket/drafts/package-summary.html">net.tootallnate.websocket.drafts</A><DD> <DT><A HREF="./net/tootallnate/websocket/drafts/Draft_17.html#Draft_17()"><B>Draft_17()</B></A> -
Constructor for class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_17.html" title="class in net.tootallnate.websocket.drafts">Draft_17</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts"><B>Draft_75</B></A> - Class in <A HREF="./net/tootallnate/websocket/drafts/package-summary.html">net.tootallnate.websocket.drafts</A><DD> <DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#Draft_75()"><B>Draft_75()</B></A> -
Constructor for class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts"><B>Draft_76</B></A> - Class in <A HREF="./net/tootallnate/websocket/drafts/package-summary.html">net.tootallnate.websocket.drafts</A><DD> <DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#Draft_76()"><B>Draft_76()</B></A> -
Constructor for class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Base64.html#ENCODE"><B>ENCODE</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Specify encoding in first bit.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encode(java.nio.ByteBuffer, java.nio.ByteBuffer)"><B>encode(ByteBuffer, ByteBuffer)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Performs Base64 encoding on the <code>raw</code> ByteBuffer,
writing it to the <code>encoded</code> ByteBuffer.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encode(java.nio.ByteBuffer, java.nio.CharBuffer)"><B>encode(ByteBuffer, CharBuffer)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Performs Base64 encoding on the <code>raw</code> ByteBuffer,
writing it to the <code>encoded</code> CharBuffer.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[])"><B>encodeBytes(byte[])</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encodes a byte array into Base64 notation.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[], int)"><B>encodeBytes(byte[], int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encodes a byte array into Base64 notation.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[], int, int)"><B>encodeBytes(byte[], int, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encodes a byte array into Base64 notation.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[], int, int, int)"><B>encodeBytes(byte[], int, int, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encodes a byte array into Base64 notation.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytesToBytes(byte[])"><B>encodeBytesToBytes(byte[])</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Similar to <A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[])"><CODE>Base64.encodeBytes(byte[])</CODE></A> but returns
a byte array instead of instantiating a String.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeBytesToBytes(byte[], int, int, int)"><B>encodeBytesToBytes(byte[], int, int, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Similar to <A HREF="./net/tootallnate/websocket/Base64.html#encodeBytes(byte[], int, int, int)"><CODE>Base64.encodeBytes(byte[], int, int, int)</CODE></A> but returns
a byte array instead of instantiating a String.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeFileToFile(java.lang.String, java.lang.String)"><B>encodeFileToFile(String, String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Reads <tt>infile</tt> and encodes it to <tt>outfile</tt>.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeFromFile(java.lang.String)"><B>encodeFromFile(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Convenience method for reading a binary file
and base64-encoding it.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeObject(java.io.Serializable)"><B>encodeObject(Serializable)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Serializes an object and returns the Base64-encoded
version of that serialized object.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeObject(java.io.Serializable, int)"><B>encodeObject(Serializable, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Serializes an object and returns the Base64-encoded
version of that serialized object.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#encodeToFile(byte[], java.lang.String)"><B>encodeToFile(byte[], String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Convenience method for encoding data to a file.
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#END_OF_FRAME"><B>END_OF_FRAME</B></A> -
Static variable in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>The byte representing the end of a WebSocket text frame.
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#flushBase64()"><B>flushBase64()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Method added by PHIL.
<DT><A HREF="./net/tootallnate/websocket/FrameBuilder.html" title="interface in net.tootallnate.websocket"><B>FrameBuilder</B></A> - Interface in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket"><B>Framedata</B></A> - Interface in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/Framedata.Opcode.html" title="enum in net.tootallnate.websocket"><B>Framedata.Opcode</B></A> - Enum in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket"><B>FramedataImpl1</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#FramedataImpl1()"><B>FramedataImpl1()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#FramedataImpl1(net.tootallnate.websocket.Framedata.Opcode)"><B>FramedataImpl1(Framedata.Opcode)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#FramedataImpl1(net.tootallnate.websocket.Framedata)"><B>FramedataImpl1(Framedata)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#getAddress()"><B>getAddress()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#getContent()"><B>getContent()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#getContent()"><B>getContent()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#getDraft()"><B>getDraft()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#getDraft()"><B>getDraft()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#getFieldValue(java.lang.String)"><B>getFieldValue(String)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#getFieldValue(java.lang.String)"><B>getFieldValue(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#getFlashPolicy(net.tootallnate.websocket.WebSocket)"><B>getFlashPolicy(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>Gets the XML string that should be returned if a client requests a Flash
security policy.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#getFlashSecurityPolicy()"><B>getFlashSecurityPolicy()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Gets the XML string that should be returned if a client requests a Flash
security policy.
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#getHttpStatusMessage()"><B>getHttpStatusMessage()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#getHttpStatusMessage()"><B>getHttpStatusMessage()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#getLocalSocketAddress()"><B>getLocalSocketAddress()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Framedata.html#getOpcode()"><B>getOpcode()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket">Framedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#getOpcode()"><B>getOpcode()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Framedata.html#getPayloadData()"><B>getPayloadData()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket">Framedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#getPayloadData()"><B>getPayloadData()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#getPort()"><B>getPort()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Gets the port number that this server listens on.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#getRemoteSocketAddress()"><B>getRemoteSocketAddress()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#getResourceDescriptor()"><B>getResourceDescriptor()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#getResourceDescriptor()"><B>getResourceDescriptor()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Framedata.html#getTransfereMasked()"><B>getTransfereMasked()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket">Framedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#getTransfereMasked()"><B>getTransfereMasked()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#getURI()"><B>getURI()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Gets the URI that this WebSocketClient is connected to.
<DT><A HREF="./net/tootallnate/websocket/Base64.html#GZIP"><B>GZIP</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Specify that data should be gzip-compressed in second bit.
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#handleRead()"><B>handleRead()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>Should be called when a Selector has a key that is writable for this
WebSocket's SocketChannel connection.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#handleWrite()"><B>handleWrite()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakeBuilder.html" title="interface in net.tootallnate.websocket"><B>HandshakeBuilder</B></A> - Interface in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket"><B>Handshakedata</B></A> - Interface in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket"><B>HandshakedataImpl1</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#HandshakedataImpl1()"><B>HandshakedataImpl1()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#HandshakedataImpl1(net.tootallnate.websocket.Handshakedata)"><B>HandshakedataImpl1(Handshakedata)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#hasFieldValue(java.lang.String)"><B>hasFieldValue(String)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#hasFieldValue(java.lang.String)"><B>hasFieldValue(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html" title="class in net.tootallnate.websocket.exeptions"><B>IncompleteHandshakeException</B></A> - Exception in <A HREF="./net/tootallnate/websocket/exeptions/package-summary.html">net.tootallnate.websocket.exeptions</A><DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html#IncompleteHandshakeException()"><B>IncompleteHandshakeException()</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">IncompleteHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html#IncompleteHandshakeException(java.lang.String, java.lang.Throwable)"><B>IncompleteHandshakeException(String, Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">IncompleteHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html#IncompleteHandshakeException(java.lang.String)"><B>IncompleteHandshakeException(String)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">IncompleteHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html#IncompleteHandshakeException(java.lang.Throwable)"><B>IncompleteHandshakeException(Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/IncompleteHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">IncompleteHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html" title="class in net.tootallnate.websocket.exeptions"><B>InvalidDataException</B></A> - Exception in <A HREF="./net/tootallnate/websocket/exeptions/package-summary.html">net.tootallnate.websocket.exeptions</A><DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html#InvalidDataException()"><B>InvalidDataException()</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html" title="class in net.tootallnate.websocket.exeptions">InvalidDataException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html#InvalidDataException(java.lang.String)"><B>InvalidDataException(String)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html" title="class in net.tootallnate.websocket.exeptions">InvalidDataException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html#InvalidDataException(java.lang.Throwable)"><B>InvalidDataException(Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html" title="class in net.tootallnate.websocket.exeptions">InvalidDataException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html#InvalidDataException(java.lang.String, java.lang.Throwable)"><B>InvalidDataException(String, Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidDataException.html" title="class in net.tootallnate.websocket.exeptions">InvalidDataException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html" title="class in net.tootallnate.websocket.exeptions"><B>InvalidFrameException</B></A> - Exception in <A HREF="./net/tootallnate/websocket/exeptions/package-summary.html">net.tootallnate.websocket.exeptions</A><DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html#InvalidFrameException()"><B>InvalidFrameException()</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html" title="class in net.tootallnate.websocket.exeptions">InvalidFrameException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html#InvalidFrameException(java.lang.String)"><B>InvalidFrameException(String)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html" title="class in net.tootallnate.websocket.exeptions">InvalidFrameException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html#InvalidFrameException(java.lang.Throwable)"><B>InvalidFrameException(Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html" title="class in net.tootallnate.websocket.exeptions">InvalidFrameException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html#InvalidFrameException(java.lang.String, java.lang.Throwable)"><B>InvalidFrameException(String, Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidFrameException.html" title="class in net.tootallnate.websocket.exeptions">InvalidFrameException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html" title="class in net.tootallnate.websocket.exeptions"><B>InvalidHandshakeException</B></A> - Exception in <A HREF="./net/tootallnate/websocket/exeptions/package-summary.html">net.tootallnate.websocket.exeptions</A><DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html#InvalidHandshakeException()"><B>InvalidHandshakeException()</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">InvalidHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html#InvalidHandshakeException(java.lang.String, java.lang.Throwable)"><B>InvalidHandshakeException(String, Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">InvalidHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html#InvalidHandshakeException(java.lang.String)"><B>InvalidHandshakeException(String)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">InvalidHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html#InvalidHandshakeException(java.lang.Throwable)"><B>InvalidHandshakeException(Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/InvalidHandshakeException.html" title="class in net.tootallnate.websocket.exeptions">InvalidHandshakeException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Framedata.html#isFin()"><B>isFin()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.html" title="interface in net.tootallnate.websocket">Framedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#isFin()"><B>isFin()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#isFlashEdgeCase(java.nio.ByteBuffer)"><B>isFlashEdgeCase(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Handshakedata.html#iterateHttpFields()"><B>iterateHttpFields()</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Handshakedata.html" title="interface in net.tootallnate.websocket">Handshakedata</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#iterateHttpFields()"><B>iterateHttpFields()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
</DL>
<HR>
<A NAME="_K_"><!-- --></A><H2>
<B>K</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#known_drafts"><B>known_drafts</B></A> -
Variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#LF"><B>LF</B></A> -
Static variable in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>The byte representing LF, or Line Feed, or \n
<DT><A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html" title="class in net.tootallnate.websocket.exeptions"><B>LimitExedeedException</B></A> - Exception in <A HREF="./net/tootallnate/websocket/exeptions/package-summary.html">net.tootallnate.websocket.exeptions</A><DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html#LimitExedeedException()"><B>LimitExedeedException()</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html" title="class in net.tootallnate.websocket.exeptions">LimitExedeedException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html#LimitExedeedException(java.lang.String)"><B>LimitExedeedException(String)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html" title="class in net.tootallnate.websocket.exeptions">LimitExedeedException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html#LimitExedeedException(java.lang.Throwable)"><B>LimitExedeedException(Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html" title="class in net.tootallnate.websocket.exeptions">LimitExedeedException</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html#LimitExedeedException(java.lang.String, java.lang.Throwable)"><B>LimitExedeedException(String, Throwable)</B></A> -
Constructor for exception net.tootallnate.websocket.exeptions.<A HREF="./net/tootallnate/websocket/exeptions/LimitExedeedException.html" title="class in net.tootallnate.websocket.exeptions">LimitExedeedException</A>
<DD>
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/package-summary.html"><B>net.tootallnate.websocket</B></A> - package net.tootallnate.websocket<DD> <DT><A HREF="./net/tootallnate/websocket/drafts/package-summary.html"><B>net.tootallnate.websocket.drafts</B></A> - package net.tootallnate.websocket.drafts<DD> <DT><A HREF="./net/tootallnate/websocket/exeptions/package-summary.html"><B>net.tootallnate.websocket.exeptions</B></A> - package net.tootallnate.websocket.exeptions<DD> <DT><A HREF="./net/tootallnate/websocket/Base64.html#NO_OPTIONS"><B>NO_OPTIONS</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>No options specified.
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onClientClose(net.tootallnate.websocket.WebSocket)"><B>onClientClose(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onClientMessage(net.tootallnate.websocket.WebSocket, java.lang.String)"><B>onClientMessage(WebSocket, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onClientOpen(net.tootallnate.websocket.WebSocket)"><B>onClientOpen(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onClose(net.tootallnate.websocket.WebSocket)"><B>onClose(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onClose(net.tootallnate.websocket.WebSocket)"><B>onClose(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Calls subclass' implementation of <var>onClose</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onClose()"><B>onClose()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onClose(net.tootallnate.websocket.WebSocket)"><B>onClose(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onError(net.tootallnate.websocket.WebSocket, java.lang.Exception)"><B>onError(WebSocket, Exception)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onError(net.tootallnate.websocket.WebSocket, java.io.IOException)"><B>onError(WebSocket, IOException)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Calls subclass' implementation of <var>onIOError</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onError(java.lang.Exception)"><B>onError(Exception)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onError(net.tootallnate.websocket.WebSocket, java.lang.Exception)"><B>onError(WebSocket, Exception)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onHandshakeRecievedAsClient(net.tootallnate.websocket.WebSocket, net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.Handshakedata)"><B>onHandshakeRecievedAsClient(WebSocket, Handshakedata, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onHandshakeRecievedAsServer(net.tootallnate.websocket.WebSocket, net.tootallnate.websocket.Draft, net.tootallnate.websocket.Handshakedata)"><B>onHandshakeRecievedAsServer(WebSocket, Draft, Handshakedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onMessage(net.tootallnate.websocket.WebSocket, java.lang.String)"><B>onMessage(WebSocket, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onMessage(net.tootallnate.websocket.WebSocket, byte[])"><B>onMessage(WebSocket, byte[])</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onMessage(net.tootallnate.websocket.WebSocket, java.lang.String)"><B>onMessage(WebSocket, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Calls subclass' implementation of <var>onMessage</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onMessage(java.lang.String)"><B>onMessage(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onMessage(net.tootallnate.websocket.WebSocket, java.lang.String)"><B>onMessage(WebSocket, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onOpen(net.tootallnate.websocket.WebSocket)"><B>onOpen(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onOpen(net.tootallnate.websocket.WebSocket)"><B>onOpen(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Calls subclass' implementation of <var>onOpen</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onOpen()"><B>onOpen()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onOpen(net.tootallnate.websocket.WebSocket)"><B>onOpen(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onPing(net.tootallnate.websocket.WebSocket, net.tootallnate.websocket.Framedata)"><B>onPing(WebSocket, Framedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#onPong(net.tootallnate.websocket.WebSocket, net.tootallnate.websocket.Framedata)"><B>onPong(WebSocket, Framedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#onWriteDemand(net.tootallnate.websocket.WebSocket)"><B>onWriteDemand(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#onWriteDemand(net.tootallnate.websocket.WebSocket)"><B>onWriteDemand(WebSocket)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Base64.html#ORDERED"><B>ORDERED</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encode using the special "ordered" dialect of Base64 described here:
<a href="http://www.faqs.org/qa/rfcc-1940.html">http://www.faqs.org/qa/rfcc-1940.html</a>.
</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#postProcessHandshakeRequestAsClient(net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeRequestAsClient(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#postProcessHandshakeRequestAsClient(net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeRequestAsClient(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_17.html#postProcessHandshakeRequestAsClient(net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeRequestAsClient(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_17.html" title="class in net.tootallnate.websocket.drafts">Draft_17</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#postProcessHandshakeRequestAsClient(net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeRequestAsClient(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#postProcessHandshakeRequestAsClient(net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeRequestAsClient(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#postProcessHandshakeResponseAsServer(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeResponseAsServer(Handshakedata, HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#postProcessHandshakeResponseAsServer(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeResponseAsServer(Handshakedata, HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#postProcessHandshakeResponseAsServer(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeResponseAsServer(Handshakedata, HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#postProcessHandshakeResponseAsServer(net.tootallnate.websocket.Handshakedata, net.tootallnate.websocket.HandshakeBuilder)"><B>postProcessHandshakeResponseAsServer(Handshakedata, HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakeBuilder.html#put(java.lang.String, java.lang.String)"><B>put(String, String)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakeBuilder.html" title="interface in net.tootallnate.websocket">HandshakeBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#put(java.lang.String, java.lang.String)"><B>put(String, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Base64.InputStream.html#read()"><B>read()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket">Base64.InputStream</A>
<DD>Reads enough of the input stream to convert
to/from Base64 and returns the next byte.
<DT><A HREF="./net/tootallnate/websocket/Base64.InputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.InputStream.html" title="class in net.tootallnate.websocket">Base64.InputStream</A>
<DD>Calls <A HREF="./net/tootallnate/websocket/Base64.InputStream.html#read()"><CODE>Base64.InputStream.read()</CODE></A> repeatedly until the end of stream
is reached or <var>len</var> bytes are read.
<DT><A HREF="./net/tootallnate/websocket/Draft.html#readLine(java.nio.ByteBuffer)"><B>readLine(ByteBuffer)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#readStringLine(java.nio.ByteBuffer)"><B>readStringLine(ByteBuffer)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#readVersion(net.tootallnate.websocket.Handshakedata)"><B>readVersion(Handshakedata)</B></A> -
Static method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#reset()"><B>reset()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#reset()"><B>reset()</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#reset()"><B>reset()</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#resumeEncoding()"><B>resumeEncoding()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Resumes encoding of the stream.
<DT><A HREF="./net/tootallnate/websocket/Draft.html#role"><B>role</B></A> -
Variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#run()"><B>run()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#run()"><B>run()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#send(java.lang.String)"><B>send(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#send(byte[])"><B>send(byte[])</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#send(java.lang.String)"><B>send(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Sends <var>text</var> to the connected WebSocket server.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#sendFrame(net.tootallnate.websocket.Framedata)"><B>sendFrame(Framedata)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#sendToAll(java.lang.String)"><B>sendToAll(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Sends <var>text</var> to all currently connected WebSocket clients.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#sendToAllExcept(net.tootallnate.websocket.WebSocket, java.lang.String)"><B>sendToAllExcept(WebSocket, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Sends <var>text</var> to all currently connected WebSocket clients,
except for the specified <var>connection</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#sendToAllExcept(java.util.Set, java.lang.String)"><B>sendToAllExcept(Set<WebSocket>, String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Sends <var>text</var> to all currently connected WebSocket clients,
except for those found in the Set <var>connections</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#setAddress(java.net.InetSocketAddress)"><B>setAddress(InetSocketAddress)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Sets the port that this WebSocketServer should listen on.
<DT><A HREF="./net/tootallnate/websocket/HandshakeBuilder.html#setContent(byte[])"><B>setContent(byte[])</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakeBuilder.html" title="interface in net.tootallnate.websocket">HandshakeBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#setContent(byte[])"><B>setContent(byte[])</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FrameBuilder.html#setFin(boolean)"><B>setFin(boolean)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FrameBuilder.html" title="interface in net.tootallnate.websocket">FrameBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#setFin(boolean)"><B>setFin(boolean)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakeBuilder.html#setHttpStatusMessage(java.lang.String)"><B>setHttpStatusMessage(String)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakeBuilder.html" title="interface in net.tootallnate.websocket">HandshakeBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#setHttpStatusMessage(java.lang.String)"><B>setHttpStatusMessage(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FrameBuilder.html#setOptcode(net.tootallnate.websocket.Framedata.Opcode)"><B>setOptcode(Framedata.Opcode)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FrameBuilder.html" title="interface in net.tootallnate.websocket">FrameBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#setOptcode(net.tootallnate.websocket.Framedata.Opcode)"><B>setOptcode(Framedata.Opcode)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#setParseMode(net.tootallnate.websocket.WebSocket.Role)"><B>setParseMode(WebSocket.Role)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FrameBuilder.html#setPayload(byte[])"><B>setPayload(byte[])</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FrameBuilder.html" title="interface in net.tootallnate.websocket">FrameBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#setPayload(byte[])"><B>setPayload(byte[])</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakeBuilder.html#setResourceDescriptor(java.lang.String)"><B>setResourceDescriptor(String)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakeBuilder.html" title="interface in net.tootallnate.websocket">HandshakeBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html#setResourceDescriptor(java.lang.String)"><B>setResourceDescriptor(String)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/HandshakedataImpl1.html" title="class in net.tootallnate.websocket">HandshakedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FrameBuilder.html#setTransferemasked(boolean)"><B>setTransferemasked(boolean)</B></A> -
Method in interface net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FrameBuilder.html" title="interface in net.tootallnate.websocket">FrameBuilder</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#setTransferemasked(boolean)"><B>setTransferemasked(boolean)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#start()"><B>start()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Starts the server thread that binds to the currently set port number and
listeners for WebSocket connection requests.
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#START_OF_FRAME"><B>START_OF_FRAME</B></A> -
Static variable in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>The byte representing the beginning of a WebSocket text frame.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#startHandshake(net.tootallnate.websocket.HandshakeBuilder)"><B>startHandshake(HandshakeBuilder)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#stingAscii(byte[])"><B>stingAscii(byte[])</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#stingAscii(byte[], int, int)"><B>stingAscii(byte[], int, int)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#stingUtf8(byte[])"><B>stingUtf8(byte[])</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#stop()"><B>stop()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Closes all connected clients sockets, then closes the underlying
ServerSocketChannel, effectively killing the server socket thread and
freeing the port the server was bound to.
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#suspendEncoding()"><B>suspendEncoding()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Suspends encoding of the stream.
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/FramedataImpl1.html#toString()"><B>toString()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/FramedataImpl1.html" title="class in net.tootallnate.websocket">FramedataImpl1</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#toString()"><B>toString()</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#translateFrame(java.nio.ByteBuffer)"><B>translateFrame(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#translateFrame(java.nio.ByteBuffer)"><B>translateFrame(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_75.html#translateFrame(java.nio.ByteBuffer)"><B>translateFrame(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_75.html" title="class in net.tootallnate.websocket.drafts">Draft_75</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#translateHandshake(java.nio.ByteBuffer)"><B>translateHandshake(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_76.html#translateHandshake(java.nio.ByteBuffer)"><B>translateHandshake(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_76.html" title="class in net.tootallnate.websocket.drafts">Draft_76</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/Draft.html#translateHandshakeHttp(java.nio.ByteBuffer)"><B>translateHandshakeHttp(ByteBuffer)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.html" title="class in net.tootallnate.websocket">Draft</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/drafts/Draft_10.html#translateSingleFrame(java.nio.ByteBuffer)"><B>translateSingleFrame(ByteBuffer)</B></A> -
Method in class net.tootallnate.websocket.drafts.<A HREF="./net/tootallnate/websocket/drafts/Draft_10.html" title="class in net.tootallnate.websocket.drafts">Draft_10</A>
<DD>
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Base64.html#URL_SAFE"><B>URL_SAFE</B></A> -
Static variable in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.html" title="class in net.tootallnate.websocket">Base64</A>
<DD>Encode using Base64-like encoding that is URL- and Filename-safe as described
in Section 4 of RFC3548:
<a href="http://www.faqs.org/rfcs/rfc3548.html">http://www.faqs.org/rfcs/rfc3548.html</a>.
<DT><A HREF="./net/tootallnate/websocket/Charsetfunctions.html#utf8Bytes(java.lang.String)"><B>utf8Bytes(String)</B></A> -
Static method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Charsetfunctions.html" title="class in net.tootallnate.websocket">Charsetfunctions</A>
<DD>
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/Draft.HandshakeState.html#valueOf(java.lang.String)"><B>valueOf(String)</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.HandshakeState.html" title="enum in net.tootallnate.websocket">Draft.HandshakeState</A>
<DD>Returns the enum constant of this type with the specified name.
<DT><A HREF="./net/tootallnate/websocket/Framedata.Opcode.html#valueOf(java.lang.String)"><B>valueOf(String)</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.Opcode.html" title="enum in net.tootallnate.websocket">Framedata.Opcode</A>
<DD>Returns the enum constant of this type with the specified name.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.Role.html#valueOf(java.lang.String)"><B>valueOf(String)</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.Role.html" title="enum in net.tootallnate.websocket">WebSocket.Role</A>
<DD>Returns the enum constant of this type with the specified name.
<DT><A HREF="./net/tootallnate/websocket/Draft.HandshakeState.html#values()"><B>values()</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Draft.HandshakeState.html" title="enum in net.tootallnate.websocket">Draft.HandshakeState</A>
<DD>Returns an array containing the constants of this enum type, in
the order they are declared.
<DT><A HREF="./net/tootallnate/websocket/Framedata.Opcode.html#values()"><B>values()</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Framedata.Opcode.html" title="enum in net.tootallnate.websocket">Framedata.Opcode</A>
<DD>Returns an array containing the constants of this enum type, in
the order they are declared.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.Role.html#values()"><B>values()</B></A> -
Static method in enum net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.Role.html" title="enum in net.tootallnate.websocket">WebSocket.Role</A>
<DD>Returns an array containing the constants of this enum type, in
the order they are declared.
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket"><B>WebSocket</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD>Represents one end (client or server) of a single WebSocket connection.<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#WebSocket(net.tootallnate.websocket.WebSocketListener, net.tootallnate.websocket.Draft, java.nio.channels.SocketChannel)"><B>WebSocket(WebSocketListener, Draft, SocketChannel)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>Used in <A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket"><CODE>WebSocketServer</CODE></A> and <A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket"><CODE>WebSocketClient</CODE></A>.
<DT><A HREF="./net/tootallnate/websocket/WebSocket.html#WebSocket(net.tootallnate.websocket.WebSocketListener, java.util.List, java.nio.channels.SocketChannel)"><B>WebSocket(WebSocketListener, List<Draft>, SocketChannel)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocket.html" title="class in net.tootallnate.websocket">WebSocket</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocket.Role.html" title="enum in net.tootallnate.websocket"><B>WebSocket.Role</B></A> - Enum in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket"><B>WebSocketAdapter</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD> <DT><A HREF="./net/tootallnate/websocket/WebSocketAdapter.html#WebSocketAdapter()"><B>WebSocketAdapter()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketAdapter.html" title="class in net.tootallnate.websocket">WebSocketAdapter</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket"><B>WebSocketClient</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD>The <tt>WebSocketClient</tt> is an abstract class that expects a valid
"ws://" URI to connect to.<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#WebSocketClient(java.net.URI)"><B>WebSocketClient(URI)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>
<DT><A HREF="./net/tootallnate/websocket/WebSocketClient.html#WebSocketClient(java.net.URI, net.tootallnate.websocket.Draft)"><B>WebSocketClient(URI, Draft)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketClient.html" title="class in net.tootallnate.websocket">WebSocketClient</A>
<DD>Constructs a WebSocketClient instance and sets it to the connect to the
specified URI.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket"><B>WebSocketServer</B></A> - Class in <A HREF="./net/tootallnate/websocket/package-summary.html">net.tootallnate.websocket</A><DD><tt>WebSocketServer</tt> is an abstract class that only takes care of the
HTTP handshake portion of WebSockets.<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#WebSocketServer()"><B>WebSocketServer()</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Nullary constructor.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#WebSocketServer(java.net.InetSocketAddress)"><B>WebSocketServer(InetSocketAddress)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Creates a WebSocketServer that will attempt to listen on port
<var>port</var>.
<DT><A HREF="./net/tootallnate/websocket/WebSocketServer.html#WebSocketServer(java.net.InetSocketAddress, net.tootallnate.websocket.Draft)"><B>WebSocketServer(InetSocketAddress, Draft)</B></A> -
Constructor for class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/WebSocketServer.html" title="class in net.tootallnate.websocket">WebSocketServer</A>
<DD>Creates a WebSocketServer that will attempt to listen on port <var>port</var>,
and comply with <tt>Draft</tt> version <var>draft</var>.
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#write(int)"><B>write(int)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Writes the byte to the output stream after
converting to/from Base64 notation.
<DT><A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> -
Method in class net.tootallnate.websocket.<A HREF="./net/tootallnate/websocket/Base64.OutputStream.html" title="class in net.tootallnate.websocket">Base64.OutputStream</A>
<DD>Calls <A HREF="./net/tootallnate/websocket/Base64.OutputStream.html#write(int)"><CODE>Base64.OutputStream.write(int)</CODE></A> repeatedly until <var>len</var>
bytes are written.
</DL>
<HR>
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_K_">K</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>