Module: Qpid::Proton::Event

Defined in:
lib/event/collector.rb,
lib/event/event_base.rb,
lib/event/event_type.rb,
lib/event/event.rb

Overview

– Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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. ++

Defined Under Namespace

Classes: Collector, Event, EventBase, EventType

Constant Summary collapse

NONE =

Defined as a programming convenience. No even of this type will ever be generated.

event_type(:PN_EVENT_NONE)
REACTOR_INIT =

A reactor has been started.

event_type(:PN_REACTOR_INIT)
REACTOR_QUIESCED =

A reactor has no more events to process.

event_type(:PN_REACTOR_QUIESCED)
REACTOR_FINAL =

A reactor has been stopred.

event_type(:PN_REACTOR_FINAL)
TIMER_TASK =

A timer event has occurred.

event_type(:PN_TIMER_TASK)
CONNECTION_INIT =

A connection has been created. This is the first even that will ever be issued for a connection.

event_type(:PN_CONNECTION_INIT)
CONNECTION_BOUND =

A conneciton has been bound toa transport.

event_type(:PN_CONNECTION_BOUND)
CONNECTION_UNBOUND =

A connection has been unbound from its transport.

event_type(:PN_CONNECTION_UNBOUND)
CONNECTION_LOCAL_OPEN =

A local connection endpoint has been opened.

event_type(:PN_CONNECTION_LOCAL_OPEN)
CONNECTION_LOCAL_CLOSE =

A local connection endpoint has been closed.

event_type(:PN_CONNECTION_LOCAL_CLOSE)
CONNECTION_REMOTE_OPEN =

A remote endpoint has opened its connection.

event_type(:PN_CONNECTION_REMOTE_OPEN)
CONNECTION_REMOTE_CLOSE =

A remote endpoint has closed its connection.

event_type(:PN_CONNECTION_REMOTE_CLOSE)
CONNECTION_FINAL =

A connection has been freed and any outstanding processing has been completed. This is the final event htat will ever be issued for a connection

event_type(:PN_CONNECTION_FINAL)
SESSION_INIT =

A session has been created. This is the first event that will ever be issues for a session.

event_type(:PN_SESSION_INIT)
SESSION_LOCAL_OPEN =

A local session endpoint has been opened.

event_type(:PN_SESSION_LOCAL_OPEN)
SESSION_LOCAL_CLOSE =

A local session endpoint has been closed.

event_type(:PN_SESSION_LOCAL_CLOSE)
SESSION_REMOTE_OPEN =

A remote endpoint has opened its session.

event_type(:PN_SESSION_REMOTE_OPEN)
SESSION_REMOTE_CLOSE =

A remote endpoint has closed its session.

event_type(:PN_SESSION_REMOTE_CLOSE)
SESSION_FINAL =

A session has been freed and any outstanding processing has been completed. This is the final event that will ever be issued for a session

event_type(:PN_SESSION_FINAL)
event_type(:PN_LINK_INIT)
event_type(:PN_LINK_LOCAL_OPEN)
event_type(:PN_LINK_LOCAL_CLOSE)
event_type(:PN_LINK_LOCAL_DETACH)
event_type(:PN_LINK_REMOTE_OPEN)
event_type(:PN_LINK_REMOTE_CLOSE)
event_type(:PN_LINK_REMOTE_DETACH)
event_type(:PN_LINK_FLOW)
event_type(:PN_LINK_FINAL)
DELIVERY =

A delivery has been created or updated.

event_type(:PN_DELIVERY)
TRANSPORT =

A transport has new data to read and/or write.

event_type(:PN_TRANSPORT)
TRANSPORT_ERROR =

Indicates that a transport error has occurred.

event_type(:PN_TRANSPORT_ERROR)
TRANSPORT_HEAD_CLOSED =

Indicates that the head of a transport has been closed. This means the transport will never produce more bytes for output to the network.

event_type(:PN_TRANSPORT_HEAD_CLOSED)
TRANSPORT_TAIL_CLOSED =

Indicates that the trail of a transport has been closed. This means the transport will never be able to process more bytes from the network.

event_type(:PN_TRANSPORT_TAIL_CLOSED)
TRANSPORT_CLOSED =

Indicates that both the head and tail of a transport are closed.

event_type(:PN_TRANSPORT_CLOSED)
SELECTABLE_INIT =
event_type(:PN_SELECTABLE_INIT)
SELECTABLE_UPDATED =
event_type(:PN_SELECTABLE_UPDATED)
SELECTABLE_READABLE =
event_type(:PN_SELECTABLE_READABLE)
SELECTABLE_WRITABLE =
event_type(:PN_SELECTABLE_WRITABLE)
SELECTABLE_EXPIRED =
event_type(:PN_SELECTABLE_EXPIRED)
SELECTABLE_ERROR =
event_type(:PN_SELECTABLE_ERROR)
SELECTABLE_FINAL =
event_type(:PN_SELECTABLE_FINAL)