You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2014/10/10 14:59:47 UTC

svn commit: r1630883 - /qpid/proton/branches/examples/proton-c/include/proton/event.h

Author: gsim
Date: Fri Oct 10 12:59:46 2014
New Revision: 1630883

URL: http://svn.apache.org/r1630883
Log:
added missing doxygen for new transport events

Modified:
    qpid/proton/branches/examples/proton-c/include/proton/event.h

Modified: qpid/proton/branches/examples/proton-c/include/proton/event.h
URL: http://svn.apache.org/viewvc/qpid/proton/branches/examples/proton-c/include/proton/event.h?rev=1630883&r1=1630882&r2=1630883&view=diff
==============================================================================
--- qpid/proton/branches/examples/proton-c/include/proton/event.h (original)
+++ qpid/proton/branches/examples/proton-c/include/proton/event.h Fri Oct 10 12:59:46 2014
@@ -238,12 +238,31 @@ typedef enum {
    */
   PN_TRANSPORT,
 
+  /**
+   * Indicates that a transport error has occurred. Use
+   * ::pn_transport_condition() to access the details of the error
+   * from the associated transport.
+   */
   PN_TRANSPORT_ERROR,
 
+  /**
+   * Indicates that the head of the transport has been closed. This
+   * means the transport will never produce more bytes for output to
+   * the network. Events of this type point to the relevant transport.
+   */
   PN_TRANSPORT_HEAD_CLOSED,
 
+  /**
+   * Indicates that the tail of the transport has been closed. This
+   * means the transport will never be able to process more bytes from
+   * the network. Events of this type point to the relevant transport.
+   */
   PN_TRANSPORT_TAIL_CLOSED,
 
+  /**
+   * Indicates that the both the head and tail of the transport are
+   * closed. Events of this type point to the relevant transport.
+   */
   PN_TRANSPORT_CLOSED
 
 } pn_event_type_t;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org