Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
CallerId |
AsteriskChannel.getCallerId()
Returns the caller id of this channel.
|
static CallerId |
CallerId.valueOf(String s)
Parses a caller id string in the form
"Some Name" <1234> to a CallerId object. |
Modifier and Type | Method and Description |
---|---|
AsteriskChannel |
AsteriskServer.originateToApplication(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables)
Generates an outgoing channel to an application and sets an optional map
of channel variables.
|
AsteriskChannel |
DefaultAsteriskServer.originateToApplication(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables) |
void |
AsteriskServer.originateToApplicationAsync(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback callback)
Asynchronously generates an outgoing channel to an application and sets
an optional map of channel variables.
|
void |
DefaultAsteriskServer.originateToApplicationAsync(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback cb) |
AsteriskChannel |
AsteriskServer.originateToExtension(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables)
Generates an outgoing channel to a dialplan entry (extension, context,
priority) and sets an optional map of channel variables.
|
AsteriskChannel |
DefaultAsteriskServer.originateToExtension(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables) |
void |
AsteriskServer.originateToExtensionAsync(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback callback)
Asynchronously generates an outgoing channel to a dialplan entry
(extension, context, priority) and sets an optional map of channel
variables.
|
void |
DefaultAsteriskServer.originateToExtensionAsync(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback cb) |
Modifier and Type | Method and Description |
---|---|
AsteriskChannel |
AsteriskServerImpl.originateToApplication(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables) |
void |
AsteriskServerImpl.originateToApplicationAsync(String channel,
String application,
String data,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback cb) |
AsteriskChannel |
AsteriskServerImpl.originateToExtension(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables) |
void |
AsteriskServerImpl.originateToExtensionAsync(String channel,
String context,
String exten,
int priority,
long timeout,
CallerId callerId,
Map<String,String> variables,
OriginateCallback cb) |
Copyright © 2004–2016. All rights reserved.