public static EventLoop obtainEventLoop()

in src/main/java/org/apache/sling/scripting/sightly/js/impl/loop/EventLoopInterop.java [30:37]


    public static EventLoop obtainEventLoop(Context context) {
        EventLoop eventLoop = getEventLoop(context);
        if (eventLoop == null) {
            eventLoop = new EventLoop();
            context.putThreadLocal(EVENT_LOOP_KEY, eventLoop);
        }
        return eventLoop;
    }