사용자의 편의를 위해 제공되는 기계 번역입니다.

영문본과 번역본이 일치하지 않는 경우 영문본이 우선합니다. 보다 자세한 내용은 이 페이지를 방문하시기 바랍니다.

문제 신고

nr프로세스메시지

통사론

nrProcessMessage(nr as Object, msg as Object) as Boolean

설명

시스템 로그 메시지를 확인하고 처리한 후 적절한 이벤트를 전송합니다.

인수

인수

설명

nr

뉴렐릭 에이전트 개체.

msg

roSystemLogEvent 유형의 메시지.

반품

msg가 시스템 로그 메시지이면 True, 그렇지 않으면 False입니다.

예시

while (true)
msg = wait(0, m.port)
if nrProcessMessage(m.nr, msg) = false
if type(msg) = "roPosterScreenEvent"
if msg.isScreenClosed()
exit while
end if
end if
end if
end while