통사론
nrProcessMessage(nr as Object, msg as Object) as Boolean
설명
시스템 로그 메시지를 확인하고 처리한 후 적절한 이벤트를 전송합니다.
인수
인수 | 설명 |
---|---|
| 뉴렐릭 에이전트 개체. |
| 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