---
sourceDocument: 호주 API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/api-reference

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideEventManager - 전역

# GlideEventManager - 전역 {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

GlideEventManager API는 이벤트를 처리하는 메서드를 제공합니다.

이벤트 큐 생성에 대한 자세한 내용은 [이벤트를 처리하기 위한 사용자 지정 큐 만들기](https://servicenow-prod.fluidtopics.net/Wwq9yfxWUifYSq3K7GhIwA#queues-create "대량의 이벤트를 생성하거나 처리하는 데 시간이 오래 걸리는 이벤트에 대해 사용자 지정 큐를 사용할 수 있습니다. 이 작업은 사용자 지정 큐, 모니터링 프로세스를 만들고 스크립트를 사용하여 큐로 이벤트를 보내는 방법을 보여줍니다.")를 참조하십시오.

## GlideEventManager - GlideEventManager(문자열 queueName) {#ariaid-title2}

GlideEventManager 객체를 인스턴스화합니다.
{#GlideEventMgr-GlideEventManager__table_ybd_rb1_vvb__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| 큐 이름 | 문자열 | 이벤트 레지스트리 \[sysevent_register\] 테이블에 나열된 이벤트의 큐 이름입니다. 큐가 제공되지 않으면 GlideEventManager 는 기본 큐에 대해 처리합니다. |
[표 1. 매개변수]

{#GlideEventMgr-GlideEventManager__table_ybd_rb1_vvb}  
다음 예제에서는 GlideEventManager 개체를 인스턴스화하는 방법을 보여 줍니다.

    var eventMgr = new GlideEventManager('my_queue');

## GlideEventManager - 프로세스(개수 제한) {#ariaid-title3}

큐에서 적격 이벤트를 처리합니다.
이 매개변수를 사용하여 limit 큐의 이벤트에 대한 process_on 횟수 범위를 식별할 수 있으며 하드 제한이 아닙니다. 예를 들어 제한이 10이면 시스템은 보류 중인 process_on 중 가장 오래된 10번을 찾습니다. 여러 이벤트의 process_on 시간이 동일한 경우 10개 이상의 이벤트가 클레임될 수 있습니다(즉, 처리 준비 완료).
{#GlideEventMgr-process_N__table_ibr_rrh_4z__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| 제한 | 번호 | 옵션입니다. 클레임된 이벤트 수를 제한합니다. 이 값이 전달되지 않으면 제한이 적용되지 않습니다. |
[표 2. 매개변수]

{#GlideEventMgr-process_N__table_ibr_rrh_4z} {#GlideEventMgr-process_N__table_jbr_rrh_4z__entry__2}

| 유형 | 설명 |
|-|-|
| 없음 |   |
[표 3. 반환]

{#GlideEventMgr-process_N__table_jbr_rrh_4z}  
다음 예제에서는 처리된 이벤트 수를 약 200으로 제한하는 방법을 보여줍니다.

    GlideEventManager('my_event_queue').process(200);


