C# 클래스 Amqp.Link

The Link class represents an AMQP link.
상속: Amqp.AmqpObject
파일 보기 프로젝트 열기: xamarin/mini-hacks 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Abort void
OnAttach void
OnDeliveryStateChanged void
OnDetach bool
OnFlow void
OnTransfer void
SendAttach void
SendDetach void
SendFlow void
ThrowIfDetaching void

보호된 메소드들

메소드 설명
Link ( Session session, string name, OnAttached onAttached ) : System

Initializes the link.

OnAbort ( Error error ) : void

Aborts the link.

OnClose ( Error error ) : bool

Closes the link.

비공개 메소드들

메소드 설명
Abort ( Error error ) : void
OnAttach ( uint remoteHandle, Amqp.Framing.Attach attach ) : void
OnDeliveryStateChanged ( Amqp.Delivery delivery ) : void
OnDetach ( Amqp.Framing.Detach detach ) : bool
OnFlow ( Amqp.Framing.Flow flow ) : void
OnTransfer ( Amqp.Delivery delivery, Amqp.Framing.Transfer transfer, ByteBuffer buffer ) : void
SendAttach ( bool role, uint initialDeliveryCount, Amqp.Framing.Attach attach ) : void
SendDetach ( Error error ) : void
SendFlow ( uint deliveryCount, uint credit, bool drain ) : void
ThrowIfDetaching ( string operation ) : void

메소드 상세

Link() 보호된 메소드

Initializes the link.
protected Link ( Session session, string name, OnAttached onAttached ) : System
session Session The session.
name string The link name.
onAttached OnAttached The callback to handle received attach.
리턴 System

OnAbort() 보호된 추상적인 메소드

Aborts the link.
protected abstract OnAbort ( Error error ) : void
error Error
리턴 void

OnClose() 보호된 메소드

Closes the link.
protected OnClose ( Error error ) : bool
error Error The error.
리턴 bool