FS-10084 [mod_v8] If the value passed is negative, block until event is received
This commit is contained in:
parent
ed3ce77b4e
commit
2fe107aca9
|
@ -336,6 +336,10 @@ JS_EVENTHANDLER_FUNCTION_IMPL(GetEvent)
|
||||||
if (switch_queue_pop_timeout(_event_queue, &pop, (switch_interval_time_t) timeout * 1000) == SWITCH_STATUS_SUCCESS && pop) {
|
if (switch_queue_pop_timeout(_event_queue, &pop, (switch_interval_time_t) timeout * 1000) == SWITCH_STATUS_SUCCESS && pop) {
|
||||||
pevent = (switch_event_t *) pop;
|
pevent = (switch_event_t *) pop;
|
||||||
}
|
}
|
||||||
|
} else if (timeout < 0) {
|
||||||
|
if (switch_queue_pop(_event_queue, &pop) == SWITCH_STATUS_SUCCESS && pop) {
|
||||||
|
prevent = (switch_event_t *) pop;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (switch_queue_trypop(_event_queue, &pop) == SWITCH_STATUS_SUCCESS && pop) {
|
if (switch_queue_trypop(_event_queue, &pop) == SWITCH_STATUS_SUCCESS && pop) {
|
||||||
pevent = (switch_event_t *) pop;
|
pevent = (switch_event_t *) pop;
|
||||||
|
|
Loading…
Reference in New Issue