Asterisk-Java

org.asteriskjava.manager.event
Class AgentConnectEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.asteriskjava.manager.event.ManagerEvent
          extended by org.asteriskjava.manager.event.AbstractAgentEvent
              extended by org.asteriskjava.manager.event.AgentConnectEvent
All Implemented Interfaces:
java.io.Serializable

public class AgentConnectEvent
extends AbstractAgentEvent

An AgentConnectEvent is triggered when a caller is connected to an agent.

It is implemented in apps/app_queue.c.

Available since Asterisk 1.2

Since:
0.2
Version:
$Id: AgentConnectEvent.java 397 2006-05-26 12:13:32Z srt $
Author:
srt
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
AgentConnectEvent(java.lang.Object source)
           
 
Method Summary
 java.lang.String getBridgedChannel()
          Returns the unique ID of the queue member channel that is taking the call.
 java.lang.Long getHoldTime()
          Returns the amount of time the caller was on hold.
 void setBridgedChannel(java.lang.String bridgedChannel)
          Sets the unique ID of the queue member channel that is taking the call.
 void setHoldTime(java.lang.Long holdtime)
          Sets the amount of time the caller was on hold.
 
Methods inherited from class org.asteriskjava.manager.event.AbstractAgentEvent
getChannel, getMember, getQueue, getUniqueId, setChannel, setMember, setQueue, setUniqueId
 
Methods inherited from class org.asteriskjava.manager.event.ManagerEvent
getDateReceived, getPrivilege, getTimestamp, setDateReceived, setPrivilege, setTimestamp, toString
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AgentConnectEvent

public AgentConnectEvent(java.lang.Object source)
Method Detail

getHoldTime

public java.lang.Long getHoldTime()
Returns the amount of time the caller was on hold.

Returns:
the amount of time the caller was on hold in seconds.

setHoldTime

public void setHoldTime(java.lang.Long holdtime)
Sets the amount of time the caller was on hold.

Parameters:
holdtime - the amount of time the caller was on hold in seconds.

getBridgedChannel

public java.lang.String getBridgedChannel()
Returns the unique ID of the queue member channel that is taking the call. This is useful when trying to link recording filenames back to a particular call from the queue.

Available since Asterisk 1.4.

Returns:
the unique ID of the queue member channel that is taking the call.

setBridgedChannel

public void setBridgedChannel(java.lang.String bridgedChannel)
Sets the unique ID of the queue member channel that is taking the call.

Parameters:
bridgedChannel - the unique ID of the queue member channel that is taking the call.

Asterisk-Java

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