For the complete documentation index, see llms.txt. This page is also available as Markdown.

f.Event().break()

f.Event().break()

개요

실행 중인 이벤트를 중단시킬 수 있습니다.

예시

// 실행중인 이벤트를 중단시킵니다.
f.Event().break()

활용

조건에 따라 이벤트를 중단시킬 수 있습니다.

// Threads가 없으며 이벤트 종료 
if (!_c.threads) {
    f.Event().break()
    return;
}

마지막 업데이트

도움이 되었나요?