Brian

Results 13 comments of Brian

I need this also and would be willing to write it if you give me a bit of direction.

I only need call queue management at the moment I would expect a basic get/set/list/remove with the attempt information Basically, I want to get the success/failure information as well as...

In asterisk 12, AsyncAGI events should be refactored based on the SubEvent type to be: 'AsyncAGIStart', 'AsyncAGIEnd', 'AsyncAGIExec', 'AGIExecStart', 'AGIExecEnd' So rather than changing anything, so far I've added those...

It may not be feasible to maintain backward compatibility once an attempt to fully conform to the AMI v2 specification is made, but I'll maintain a branch for a bit...

It didn't fit well with ARI, your code should still work, but if you need ARI you can use the wormling/phparia project. It does not include menu logic, but it's...

Ahh... you'll still need to switch to 'AsyncAGIStart', 'AsyncAGIEnd', 'AsyncAGIExec', 'AGIExecStart', 'AGIExecEnd', there might be something it that clone of PAGI on my github

steevanb: Did you ever find a way to work through this? I have a couple adapters I would also like put in a bundle. Is your adapter bundle code available...

$bridge is an object containing the state of the bridge before the channels were added. I could modify resources to always call ARI, but I'd be a bit worried about...

Good idea. I'll can find the spots in the code that apply this weekend or you can submit a PR if you have the time.

IdentifiableEventInterface has a single getEventId() which should return the string used in emit(). ChannelLeftBridge class then implements this using: ` return "{$this->getType()}_{$this->getChannel()->getId()}"; ` I'm not sure what the best way...