Package net.pterodactylus.sone.core.event

Examples of net.pterodactylus.sone.core.event.SoneInsertedEvent


            sone.setStatus(SoneStatus.inserting);
            long insertTime = System.currentTimeMillis();
            insertInformation.setTime(insertTime);
            eventBus.post(new SoneInsertingEvent(sone));
            FreenetURI finalUri = freenetInterface.insertDirectory(insertInformation.getInsertUri(), insertInformation.generateManifestEntries(), "index.html");
            eventBus.post(new SoneInsertedEvent(sone, System.currentTimeMillis() - insertTime));
            /* at this point we might already be stopped. */
            if (shouldStop()) {
              /* if so, bail out, don’t change anything. */
              break;
            }
 
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.core.event.SoneInsertedEvent

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.