Channel States
Posted cn三少nginx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Channel States相关的知识,希望对你有一定的参考价值。
Introduction
A channel (a call) will go through many different states during its lifetime. Here we will describe the different states that a channel might find itself in, and what each of those states mean.
States
State | Description |
---|---|
CS_NEW | Channel is newly created. |
CS_INIT | Channel has been initialized. |
CS_ROUTING | Channel is looking for an extension to execute. |
CS_SOFT_EXECUTE | Channel is ready to execute from 3rd party control. |
CS_EXECUTE | Channel is executing its dialplan. |
CS_EXCHANGE_MEDIA | Channel is exchanging media with another channel. |
CS_PARK | Channel is accepting media awaiting commands. |
CS_CONSUME_MEDIA | Channel is consuming all media and dropping it. |
CS_HIBERNATE | Channel is in a sleep state. |
CS_RESET | Channel is in a reset state. |
CS_HANGUP | Channel is flagged for hangup and ready to end. Media will now end, and no further call routing will occur. |
CS_REPORTING | The channel is already hung up, media is already down, and now it‘s time to do any sort of reporting processes such as CDR logging. |
CS_DESTROY | Channel is ready to be destroyed and out of the state machine. Memory pools are returned to the core and utilized memory from the channel is freed. |
State Handlers
Custom state handlers can be added to the channels either globally or on a per-channel basis. This will allow you to do your own custom reporting or clean up your own dynamically created objects, for example. Custom handlers can also be then removed from a channel.
以上是关于Channel States的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin 协程Channel 通道 ① ( Channel#send 发送数据 | Channel#receive 接收数据 )
Kotlin 协程Channel 通道 ④ ( Channel 通道的热数据流属性 | Channel 通道关闭过程 | Channel 通道关闭代码示例 )
Kotlin 协程Channel 通道 ② ( Channel 通道容量 | Channel 通道迭代 | 使用 iterator 迭代器进行迭代 | 使用 for in 循环进行迭代 )