Asterisk-Java

Uses of Interface
org.asteriskjava.live.AsteriskChannel

Packages that use AsteriskChannel
org.asteriskjava.live Provides a higher level API on top of Asterisk's Manager API. 
org.asteriskjava.live.internal Provides private implementations and helper classes for interfaces defined in the org.asteriskjava.live package. 
 

Uses of AsteriskChannel in org.asteriskjava.live
 

Methods in org.asteriskjava.live that return AsteriskChannel
 AsteriskChannel CallDetailRecord.getChannel()
           
 AsteriskChannel AsteriskQueueEntry.getChannel()
          Returns the channel associated with this entry.
 AsteriskChannel LinkedChannelHistoryEntry.getChannel()
          Returns the channel that has been linked.
 AsteriskChannel MeetMeUser.getChannel()
          Returns the channel associated with this user.
 AsteriskChannel DialedChannelHistoryEntry.getChannel()
          Returns the channel that has been dialed.
 AsteriskChannel AsteriskServer.getChannelById(java.lang.String id)
          Returns a channel by its unique id.
 AsteriskChannel DefaultAsteriskServer.getChannelById(java.lang.String id)
           
 AsteriskChannel AsteriskServer.getChannelByName(java.lang.String name)
          Returns a channel by its name.
 AsteriskChannel DefaultAsteriskServer.getChannelByName(java.lang.String name)
           
 AsteriskChannel CallDetailRecord.getDestinationChannel()
           
 AsteriskChannel AsteriskChannel.getDialedChannel()
          Returns the channel that has been dialed by this channel most recently, this is the destination channel that was created because this channel dialed it.
 AsteriskChannel AsteriskChannel.getDialingChannel()
          Returns the channel that was dialing this channel, this is the source channel that created this channel by dialing it.
 AsteriskChannel AsteriskChannel.getLinkedChannel()
          Returns the channel this channel is currently bridged with, if any.
 AsteriskChannel AsteriskServer.originate(OriginateAction originateAction)
          Generates an outgoing channel.
 AsteriskChannel DefaultAsteriskServer.originate(OriginateAction originateAction)
           
 AsteriskChannel AsteriskServer.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout)
          Generates an outgoing channel to an application.
 AsteriskChannel DefaultAsteriskServer.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout)
           
 AsteriskChannel AsteriskServer.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
          Generates an outgoing channel to an application and sets an optional map of channel variables.
 AsteriskChannel DefaultAsteriskServer.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
           
 AsteriskChannel AsteriskServer.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout)
          Generates an outgoing channel to a dialplan entry (extension, context, priority).
 AsteriskChannel DefaultAsteriskServer.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout)
           
 AsteriskChannel AsteriskServer.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
          Generates an outgoing channel to a dialplan entry (extension, context, priority) and sets an optional map of channel variables.
 AsteriskChannel DefaultAsteriskServer.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
           
 

Methods in org.asteriskjava.live that return types with arguments of type AsteriskChannel
 java.util.Collection<AsteriskChannel> AsteriskServer.getChannels()
          Returns the active channels of the Asterisk server.
 java.util.Collection<AsteriskChannel> DefaultAsteriskServer.getChannels()
           
 

Methods in org.asteriskjava.live with parameters of type AsteriskChannel
 void OriginateCallback.onBusy(AsteriskChannel channel)
          Called if the originate was unsuccessful because the called party was busy.
 void OriginateCallback.onDialing(AsteriskChannel channel)
          Called when the channel has been created and before it starts ringing.
 void AbstractAsteriskServerListener.onNewAsteriskChannel(AsteriskChannel channel)
           
 void AsteriskServerListener.onNewAsteriskChannel(AsteriskChannel channel)
          Called whenever a new channel appears on the Asterisk server.
 void OriginateCallback.onNoAnswer(AsteriskChannel channel)
          Called if the originate was unsuccessful because the called party did not answer the call.
 void OriginateCallback.onSuccess(AsteriskChannel channel)
          Called if the originate was successful and the called party answered the call.
 

Constructors in org.asteriskjava.live with parameters of type AsteriskChannel
DialedChannelHistoryEntry(java.util.Date date, AsteriskChannel channel)
          Creates a new instance.
LinkedChannelHistoryEntry(java.util.Date dateLinked, AsteriskChannel channel)
          Creates a new instance.
 

Uses of AsteriskChannel in org.asteriskjava.live.internal
 

Methods in org.asteriskjava.live.internal that return AsteriskChannel
 AsteriskChannel CallDetailRecordImpl.getChannel()
           
 AsteriskChannel AsteriskServerImpl.getChannelById(java.lang.String id)
           
 AsteriskChannel AsteriskServerImpl.getChannelByName(java.lang.String name)
           
 AsteriskChannel AsteriskServerImpl.getChannelByNameAndActive(java.lang.String name)
           
 AsteriskChannel CallDetailRecordImpl.getDestinationChannel()
           
 AsteriskChannel AsteriskServerImpl.originate(OriginateAction originateAction)
           
 AsteriskChannel AsteriskServerImpl.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout)
           
 AsteriskChannel AsteriskServerImpl.originateToApplication(java.lang.String channel, java.lang.String application, java.lang.String data, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
           
 AsteriskChannel AsteriskServerImpl.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout)
           
 AsteriskChannel AsteriskServerImpl.originateToExtension(java.lang.String channel, java.lang.String context, java.lang.String exten, int priority, long timeout, CallerId callerId, java.util.Map<java.lang.String,java.lang.String> variables)
           
 

Methods in org.asteriskjava.live.internal that return types with arguments of type AsteriskChannel
 java.util.Collection<AsteriskChannel> AsteriskServerImpl.getChannels()
           
 


Asterisk-Java

Copyright © 2004-2009 Stefan Reuter. All Rights Reserved.