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

Packages that use IceCandidate
org.lastbamboo.common.ice   
org.lastbamboo.common.ice.candidate   
org.lastbamboo.common.ice.sdp   
 

Uses of IceCandidate in org.lastbamboo.common.ice
 

Methods in org.lastbamboo.common.ice that return IceCandidate
 IceCandidate IceMediaStreamImpl.addRemotePeerReflexive(org.littleshoot.stun.stack.message.BindingRequest request, InetSocketAddress localAddress, InetSocketAddress remoteAddress, boolean isUdp)
           
 IceCandidate IceMediaStream.addRemotePeerReflexive(org.littleshoot.stun.stack.message.BindingRequest request, InetSocketAddress localAddress, InetSocketAddress remoteAddress, boolean isUdp)
          Adds a peer reflexive candidate to the list of remote candidates.
 IceCandidate IceMediaStreamImpl.getLocalCandidate(InetSocketAddress localAddress, boolean isUdp)
           
 IceCandidate IceMediaStream.getLocalCandidate(InetSocketAddress localAddress, boolean isUdp)
          Accessor for the local candidate associate with the specified local address.
 IceCandidate IceMediaStreamImpl.getRemoteCandidate(InetSocketAddress remoteAddress, boolean isUdp)
           
 IceCandidate IceMediaStream.getRemoteCandidate(InetSocketAddress remoteAddress, boolean isUdp)
          Accessor for the remote candidate associate with the specified remote address.
 

Methods in org.lastbamboo.common.ice that return types with arguments of type IceCandidate
 Collection<? extends IceCandidate> TcpTurnOfferAnswer.gatherCandidates()
           
 Collection<? extends IceCandidate> TcpOfferAnswer.gatherCandidates()
           
 Collection<? extends IceCandidate> IceOfferAnswer.gatherCandidates()
          Gathers candidates for this specific offer/answer implementation.
 Collection<? extends IceCandidate> IceAgentImpl.gatherCandidates()
           
 Collection<IceCandidate> IceMediaStreamImpl.getLocalCandidates()
           
 Collection<IceCandidate> IceMediaStream.getLocalCandidates()
          Accessor for the local candidates for this stream.
 

Methods in org.lastbamboo.common.ice with parameters of type IceCandidate
 void IceMediaStreamImpl.addLocalCandidate(IceCandidate localCandidate)
           
 void IceMediaStream.addLocalCandidate(IceCandidate localCandidate)
          Adds a local candidate.
 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)
           
 void IceStunClientCandidateProcessor.processLocalCandidate(IceCandidate localCandidate)
          Processes the specified local candidate.
 

Method parameters in org.lastbamboo.common.ice with type arguments of type IceCandidate
 void IceMediaStreamImpl.establishStream(Collection<IceCandidate> remoteCandidates)
           
 void IceMediaStream.establishStream(Collection<IceCandidate> remoteCandidates)
          Establishes a media stream using the answer data from the remote host.
 void IceCheckListImpl.formCheckList(Collection<IceCandidate> remoteCandidates)
           
 void IceCheckList.formCheckList(Collection<IceCandidate> remoteCandidates)
          Forms the check list.
 void IceMediaStreamImpl.start(IceCheckList checkList, Collection<IceCandidate> localCandidates, IceCheckScheduler scheduler)
           
 void IceMediaStream.start(IceCheckList checkList, Collection<IceCandidate> localCandidates, IceCheckScheduler scheduler)
          Starts gathering candidates and executing ICE.
 

Constructor parameters in org.lastbamboo.common.ice with type arguments of type IceCandidate
IceCheckListImpl(IceCandidatePairFactory candidatePairFactory, Collection<IceCandidate> localCandidates)
          Creates a new check list, starting with only local candidates.
 

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

Classes in org.lastbamboo.common.ice.candidate that implement IceCandidate
 class AbstractIceCandidate
          Class that abstracts out general attributes of all ICE session candidates.
 class IceTcpActiveCandidate
          ICE active TCP candidate.
 class IceTcpHostPassiveCandidate
          ICE passive TCP candidate for the local host.
 class IceTcpPeerReflexiveCandidate
          Peer reflexive ICE TCP candidate.
 class IceTcpRelayPassiveCandidate
          ICE passive TCP candidate for relayed hosts.
 class IceTcpServerReflexiveSoCandidate
          ICE simultaneous open TCP candidate for server reflexive hosts.
 class IceUdpHostCandidate
          ICE UDP candidate for the local host.
 class IceUdpPeerReflexiveCandidate
          Peer reflexive ICE UDP candidate.
 class IceUdpRelayCandidate
          Relay ICE UDP candidate.
 class IceUdpServerReflexiveCandidate
          Server reflexive ICE UDP candidate.
 

Methods in org.lastbamboo.common.ice.candidate that return IceCandidate
 IceCandidate IceCandidate.getBaseCandidate()
          Accessor for the base candidate for this candidate.
 IceCandidate AbstractIceCandidate.getBaseCandidate()
           
 IceCandidate IceUdpCandidatePair.getLocalCandidate()
           
 IceCandidate IceCandidatePair.getLocalCandidate()
          Accessor for the local candidate for the pair.
 IceCandidate IceUdpCandidatePair.getRemoteCandidate()
           
 IceCandidate IceCandidatePair.getRemoteCandidate()
          Accessor for the remote candidate for the pair.
 

Methods in org.lastbamboo.common.ice.candidate that return types with arguments of type IceCandidate
 Collection<IceCandidate> UdpIceCandidateGatherer.gatherCandidates()
           
 Collection<IceCandidate> IceCandidateGatherer.gatherCandidates()
          Gathers ICE candidates.
 

Methods in org.lastbamboo.common.ice.candidate with parameters of type IceCandidate
static long IceCandidatePairPriorityCalculator.calculatePriority(IceCandidate localCandidate, IceCandidate remoteCandidate)
          Calculates the priority for the candidates pair.
 IceCandidatePair IceCandidatePairFactoryImpl.newPair(IceCandidate localCandidate, IceCandidate remoteCandidate)
           
 IceCandidatePair IceCandidatePairFactory.newPair(IceCandidate localCandidate, IceCandidate remoteCandidate)
           
 

Method parameters in org.lastbamboo.common.ice.candidate with type arguments of type IceCandidate
 void IceCandidateVisitorAdapter.visitCandidates(Collection<IceCandidate> candidates)
           
 void IceCandidateVisitor.visitCandidates(Collection<IceCandidate> candidates)
          Visits the specified Collection of ICE candidates.
 

Constructors in org.lastbamboo.common.ice.candidate with parameters of type IceCandidate
AbstractIceCandidate(InetSocketAddress socketAddress, String foundation, IceCandidateType type, IceTransportProtocol transport, long priority, boolean controlling, int componentId, IceCandidate baseCandidate, InetAddress relatedAddress, int relatedPort)
           
IceTcpPeerReflexiveCandidate(InetSocketAddress peerReflexiveAddress, IceCandidate baseCandidate, boolean controlling, long priority)
          Creates a new TCP ICE candidate for the server peer candidate.
IceTcpServerReflexiveSoCandidate(InetSocketAddress socketAddress, IceCandidate baseCandidate, InetAddress stunServerAddress, boolean controlling)
          Creates a new ICE simultaneous open TCP candidate for server reflexive hosts.
IceUdpCandidatePair(IceCandidate localCandidate, IceCandidate remoteCandidate, IceStunCheckerFactory stunCheckerFactory, IceConnector iceConnector)
          Creates a new pair without an existing connection between the endpoints.
IceUdpCandidatePair(IceCandidate localCandidate, IceCandidate remoteCandidate, org.littleshoot.mina.common.IoSession ioSession, IceStunCheckerFactory stunCheckerFactory)
          Creates a new pair.
IceUdpPeerReflexiveCandidate(InetSocketAddress peerReflexiveAddress, IceCandidate baseCandidate, boolean controlling, long priority)
          Creates a new UDP ICE candidate for the server peer candidate.
IceUdpServerReflexiveCandidate(InetSocketAddress serverReflexiveAddress, IceCandidate baseCandidate, InetAddress stunServerAddress, boolean controlling)
          Creates a new UDP ICE candidate for the server reflexive candidate.
 

Uses of IceCandidate in org.lastbamboo.common.ice.sdp
 

Methods in org.lastbamboo.common.ice.sdp that return types with arguments of type IceCandidate
 Collection<IceCandidate> IceCandidateSdpDecoderImpl.decode(org.littleshoot.mina.common.ByteBuffer buf, boolean controlling)
           
 Collection<IceCandidate> IceCandidateSdpDecoder.decode(org.littleshoot.mina.common.ByteBuffer buf, boolean controlling)
          Creates a new Collection of IceCandidate classes from the specified SDP data.
 

Method parameters in org.lastbamboo.common.ice.sdp with type arguments of type IceCandidate
 void IceCandidateSdpEncoder.visitCandidates(Collection<IceCandidate> candidates)
           
 



Copyright © 2013 LittleShoot. All Rights Reserved.