Uses of Interface
org.lastbamboo.common.ice.candidate.IceCandidatePair

Packages that use IceCandidatePair
org.lastbamboo.common.ice   
org.lastbamboo.common.ice.candidate   
 

Uses of IceCandidatePair in org.lastbamboo.common.ice
 

Methods in org.lastbamboo.common.ice that return IceCandidatePair
 IceCandidatePair IceMediaStreamImpl.getPair(InetSocketAddress localAddress, InetSocketAddress remoteAddress, boolean isUdp)
           
 IceCandidatePair IceMediaStream.getPair(InetSocketAddress localAddress, InetSocketAddress remoteAddress, boolean udp)
          Accesses the pair matching the specified local and remote addresses, if any.
 IceCandidatePair ExistingSessionIceCandidatePairFactoryImpl.newUdpPair(IceCandidate localCandidate, IceCandidate remoteCandidate, org.littleshoot.mina.common.IoSession ioSession)
           
 IceCandidatePair ExistingSessionIceCandidatePairFactory.newUdpPair(IceCandidate localCandidate, IceCandidate remoteCandidate, org.littleshoot.mina.common.IoSession ioSession)
           
 IceCandidatePair IceCheckListImpl.removeTopTriggeredPair()
           
 IceCandidatePair IceCheckList.removeTopTriggeredPair()
          Removes the top triggered pair.
 IceCandidatePair IceCheckListImpl.selectAnyPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 IceCandidatePair IceCheckList.selectAnyPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Selects the first pair matching the predicate from any check list.
 IceCandidatePair IceCheckListImpl.selectPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 IceCandidatePair IceCheckList.selectPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Selects the first pair matching the predicate from the normal check list.
 

Methods in org.lastbamboo.common.ice that return types with arguments of type IceCandidatePair
 Queue<IceCandidatePair> IceMediaStreamImpl.getNominatedPairs()
           
 Queue<IceCandidatePair> IceMediaStream.getNominatedPairs()
          Accessor for all nominated pairs for this stream.
 Queue<IceCandidatePair> IceAgentImpl.getNominatedPairs()
           
 Queue<IceCandidatePair> IceAgent.getNominatedPairs()
          Accessor for the nominated pairs.
 Queue<IceCandidatePair> IceMediaStreamImpl.getValidPairs()
           
 Queue<IceCandidatePair> IceMediaStream.getValidPairs()
          Accessor for all valid pairs for this stream.
 

Methods in org.lastbamboo.common.ice with parameters of type IceCandidatePair
 void IceMediaStreamImpl.addPair(IceCandidatePair pair)
           
 void IceMediaStream.addPair(IceCandidatePair pair)
          Adds the specified ICE candidate pair to the check list.
 void IceCheckListImpl.addPair(IceCandidatePair pair)
           
 void IceCheckList.addPair(IceCandidatePair pair)
          Adds the specified ICE candidate pair to the check list.
 void IceMediaStreamImpl.addTriggeredPair(IceCandidatePair pair)
           
 void IceMediaStream.addTriggeredPair(IceCandidatePair pair)
          Adds a pair to the triggered check queue.
 void IceCheckListImpl.addTriggeredPair(IceCandidatePair pair)
           
 void IceCheckList.addTriggeredPair(IceCandidatePair pair)
          Adds a pair to the triggered check queue.
 void IceMediaStreamImpl.addValidPair(IceCandidatePair pair)
           
 void IceMediaStream.addValidPair(IceCandidatePair pair)
          Adds a new valid pair.
 boolean IceMediaStreamImpl.hasHigherPriorityPendingPair(IceCandidatePair pair)
           
 boolean IceMediaStream.hasHigherPriorityPendingPair(IceCandidatePair pair)
          Checks whether or not there are existing pairs on either the triggered check list or the normal check list.
 boolean IceCheckListImpl.hasHigherPriorityPendingPair(IceCandidatePair pair)
           
 boolean IceCheckList.hasHigherPriorityPendingPair(IceCandidatePair pair)
          Checks whether or not there are existing pairs on either the triggered check list or the normal check list.
 void IceMediaFactory.newMedia(IceCandidatePair nominatedPair, boolean client, org.lastbamboo.common.offer.answer.OfferAnswerMediaListener mediaListener)
          Starts an ICE media session.
 void IceMediaStreamImpl.onNominated(IceCandidatePair pair)
           
 void IceMediaStream.onNominated(IceCandidatePair pair)
          Notifies the media stream that there's been a nominated pair.
 void IceAgentImpl.onNominatedPair(IceCandidatePair pair, IceMediaStream mediaStream)
           
 void IceAgent.onNominatedPair(IceCandidatePair pair, IceMediaStream iceMediaStream)
          Indicates a pair has been nominated.
 void IceCheckListImpl.removeWaitingAndFrozenPairs(IceCandidatePair nominatedPair)
           
 void IceCheckList.removeWaitingAndFrozenPairs(IceCandidatePair pair)
          Notifies the media stream that there's been a nominated pair.
 void IceMediaStreamImpl.updatePairStates(IceCandidatePair generatingPair)
           
 void IceMediaStream.updatePairStates(IceCandidatePair generatingPair)
          Called when connectivity checks have created a new valid pair and the media stream needs to update the states of other pairs.
 

Method parameters in org.lastbamboo.common.ice with type arguments of type IceCandidatePair
 void IceCheckListImpl.executeOnPairs(org.littleshoot.util.Closure<IceCandidatePair> closure)
           
 void IceCheckList.executeOnPairs(org.littleshoot.util.Closure<IceCandidatePair> closure)
          Executes the specified Closure on candidate pairs in the check list.
 boolean IceCheckListImpl.matchesAll(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 boolean IceCheckList.matchesAll(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Returns whether all the pairs in the check list fit the given predicate.
 boolean IceCheckListImpl.matchesAny(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 boolean IceCheckList.matchesAny(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Returns whether or not any pairs match the specified criteria.
 IceCandidatePair IceCheckListImpl.selectAnyPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 IceCandidatePair IceCheckList.selectAnyPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Selects the first pair matching the predicate from any check list.
 IceCandidatePair IceCheckListImpl.selectPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
           
 IceCandidatePair IceCheckList.selectPair(org.littleshoot.util.Predicate<IceCandidatePair> pred)
          Selects the first pair matching the predicate from the normal check list.
 

Constructors in org.lastbamboo.common.ice with parameters of type IceCandidatePair
IceStunClientCandidateProcessor(IceAgent iceAgent, IceMediaStream iceMediaStream, IceCandidatePair udpPair, ExistingSessionIceCandidatePairFactory existingSessionPairFactory)
          Creates a new connectivity checker for a single UDP pair.
 

Uses of IceCandidatePair in org.lastbamboo.common.ice.candidate
 

Classes in org.lastbamboo.common.ice.candidate that implement IceCandidatePair
 class IceUdpCandidatePair
          A UDP ICE candidate pair.
 

Methods in org.lastbamboo.common.ice.candidate that return IceCandidatePair
 IceCandidatePair IceCandidatePairFactoryImpl.newPair(IceCandidate localCandidate, IceCandidate remoteCandidate)
           
 IceCandidatePair IceCandidatePairFactory.newPair(IceCandidate localCandidate, IceCandidate remoteCandidate)
           
 

Methods in org.lastbamboo.common.ice.candidate with parameters of type IceCandidatePair
 int IceCandidatePairComparator.compare(IceCandidatePair pair1, IceCandidatePair pair2)
           
 int IceUdpCandidatePair.compareTo(IceCandidatePair other)
           
 



Copyright © 2013 LittleShoot. All Rights Reserved.