summaryrefslogtreecommitdiffstats
path: root/simple/simple-transport/src/main/java/org/simpleframework/transport/TransportEvent.java
blob: 97be771a36c094179e8264f7cf85410e7c77cad8 (plain)
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
/*
 * TransportEvent.java October 2012
 *
 * Copyright (C) 2007, Niall Gallagher <niallg@users.sf.net>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
 * implied. See the License for the specific language governing 
 * permissions and limitations under the License.
 */

package org.simpleframework.transport;

/**
 * The <code>TransportEvent</code> enum represents various events that
 * can occur with the transport. Events that are available here are
 * typically those that refer to low level I/O operations within the
 * server. If a <code>Trace</code> has been associated with the socket
 * connection then it will receive these events as they occur.
 * 
 * @author Niall Gallagher
 */
public enum TransportEvent {
   
   /**
    * This event represents a read operation on the underlying socket.
    */
   READ,
   
   /**
    * This event occurs when there is no more data available to read.
    */
   READ_WAIT,
   
   /**
    * This event represents a write operation on the underlying socket.
    */
   WRITE,
   
   /**
    * This event represents a write buffer operation on the underlying socket.
    */
   WRITE_BUFFER,  
   
   /**
    * This event occurs when no more data can be sent over the socket.
    */
   WRITE_WAIT,
   
   /**
    * This event occurs when a thread must wait for a write to finish.
    */
   WRITE_BLOCKING,
   
   /**
    * This event occurs with HTTPS when a new SSL handshake starts.
    */
   HANDSHAKE_BEGIN,   
   
   /**
    * This event occurs with HTTPS when a SSL handshake has finished.
    */
   HANDSHAKE_DONE,
   
   /**
    * This event occurs when a server challenges for an X509 certificate.
    */
   CERTIFICATE_CHALLENGE,
   
   /**
    * This event indicates that the handshake failed in some way.
    */
   HANDSHAKE_FAILED,
   
   /**
    * This event occurs when the underlying connection is terminated.
    */
   CLOSE,
   
   /**
    * This event occurs when there is an error with the transport.
    */
   ERROR
}