org.asteriskjava.pbx.activities.DialToAgiActivity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.pbx.activities;
import org.asteriskjava.pbx.Activity;
import org.asteriskjava.pbx.Channel;
import org.asteriskjava.pbx.EndPoint;
public interface DialToAgiActivity extends Activity {
void markCancelled();
boolean cancelledByOperator();
EndPoint getOriginatingEndPoint();
Channel getOriginatingChannel();
void abort();
void dial();
}