All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mobicents.protocols.api.Association Maven / Gradle / Ivy

There is a newer version: 2.0.18
Show newest version
/*
 * TeleStax, Open Source Cloud Communications  Copyright 2012. 
 * and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.mobicents.protocols.api;

import io.netty.buffer.ByteBufAllocator;



/**
 * 

* A protocol relationship between endpoints *

*

* The implementation of this interface is actual wrapper over Socket that * know's how to communicate with peer. The user of Association shouldn't care * if the underlying Socket is client or server side *

*

* *

* * @author amit bhayani * */ public interface Association { /** * Return the Association channel type TCP or SCTP * * @return */ public IpChannelType getIpChannelType(); /** * Return the type of Association CLIENT or SERVER * * @return */ public AssociationType getAssociationType(); /** * Each association has unique name * * @return name of association */ public String getName(); /** * If this association is started by management * * @return */ public boolean isStarted(); /** * If this association up (connection is started and established) * * @return */ public boolean isConnected(); /** * If this association up (connection is established) * * @return */ public boolean isUp(); /** * The AssociationListener set for this Association * * @return */ public AssociationListener getAssociationListener(); /** * The {@link AssociationListener} to be registered for this Association * * @param associationListener */ public void setAssociationListener(AssociationListener associationListener); /** * The host address that underlying socket is bound to * * @return */ public String getHostAddress(); /** * The host port that underlying socket is bound to * * @return */ public int getHostPort(); /** * The peer address that the underlying socket connects to * * @return */ public String getPeerAddress(); /** * The peer port that the underlying socket is connected to * * @return */ public int getPeerPort(); /** * Server name if the association is for {@link Server} * * @return */ public String getServerName(); /** * When SCTP multi-homing configuration extra IP addresses are here * * @return */ public String[] getExtraHostAddresses(); /** * Send the {@link PayloadData} to the peer * * @param payloadData * @throws Exception */ public void send(PayloadData payloadData) throws Exception; /** * Return ByteBufAllocator if the underlying Channel is netty or null if not * * @return */ public ByteBufAllocator getByteBufAllocator() throws Exception; /** * Return the last measured Congestion Level at the sending direction * * @return */ public int getCongestionLevel(); /** * Use this method only for accepting anonymous connections * from the ServerListener.onNewRemoteConnection() invoking * * @param associationListener * @throws Exception */ public void acceptAnonymousAssociation(AssociationListener associationListener) throws Exception; /** * Use this method only for rejecting anonymous connections * from the ServerListener.onNewRemoteConnection() invoking */ public void rejectAnonymousAssociation(); /** * Stop the anonymous association. The connection will be closed and we will not reuse this association * This can be applied only for anonymous association, other associations must be stopped by * Management.stopAssociation(String assocName) * * @throws Exception */ public void stopAnonymousAssociation() throws Exception; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy