org.apache.qpid.proton.engine.Link Maven / Gradle / Ivy
/*
*
* 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.
*
*/
package org.apache.qpid.proton.engine;
import java.util.EnumSet;
import java.util.Iterator;
import org.apache.qpid.proton.amqp.transport.ReceiverSettleMode;
import org.apache.qpid.proton.amqp.transport.SenderSettleMode;
import org.apache.qpid.proton.amqp.transport.Source;
import org.apache.qpid.proton.amqp.transport.Target;
/**
* Link
*
*/
public interface Link extends Endpoint
{
/**
* Returns the name of the link
*
* @return the link name
*/
String getName();
/**
* Create a delivery object based on the specified tag.
*
* @param tag a tag for the delivery
* @return a Delivery object
*/
public Delivery delivery(byte[] tag);
/**
* Create a delivery object based on the specified tag. This form
* of the method is intended to allow the tag to be formed from a
* subsequence of the byte array passed in. This might allow more
* optimsation options in future but at present is not
* implemented.
*
* @param tag a tag for the delivery
* @param offset (currently ignored and must be 0)
* @param length (currently ignored and must be the length of the tag
array
* @return a Delivery object
*/
public Delivery delivery(byte[] tag, int offset, int length);
/**
* @return the unsettled deliveries for this link
*/
public Iterator unsettled();
/**
* @return return the current delivery
*/
Delivery current();
/**
* Attempts to advance the current delivery
* @return true if it can advance, false if it cannot
*/
boolean advance();
Source getSource();
Target getTarget();
void setSource(Source address);
void setTarget(Target address);
Source getRemoteSource();
Target getRemoteTarget();
public Link next(EnumSet local, EnumSet remote);
public int getCredit();
public int getQueued();
public int getUnsettled();
public Session getSession();
SenderSettleMode getSenderSettleMode();
void setSenderSettleMode(SenderSettleMode senderSettleMode);
SenderSettleMode getRemoteSenderSettleMode();
void setRemoteSenderSettleMode(SenderSettleMode remoteSenderSettleMode);
ReceiverSettleMode getReceiverSettleMode();
void setReceiverSettleMode(ReceiverSettleMode receiverSettleMode);
ReceiverSettleMode getRemoteReceiverSettleMode();
}