Package org.apache.sling.event.impl.AbstractRepositoryEventHandler

Examples of org.apache.sling.event.impl.AbstractRepositoryEventHandler.EventInfo


    public EventInfo waitForFinish() throws InterruptedException {
        this.isWaiting = true;
        this.markForCleanUp = false;
        this.lock.wait();
        this.isWaiting = false;
        final EventInfo object = this.eventInfo;
        this.eventInfo = null;
        return object;
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.event.impl.AbstractRepositoryEventHandler.EventInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.