Examples of WriteEntryRequest


Examples of org.fcrepo.server.journal.readerwriter.multicast.request.WriteEntryRequest

        synchronized (JournalWriter.SYNCHRONIZER) {
            if (state == SHUTDOWN) {
                return;
            }
            logger.debug("Writing journal entry.");
            sendRequestToAllTransports(new WriteEntryRequest(this, journalEntry));
            currentSize += sizeEstimator.estimateSize(journalEntry);

            if (state == FILE_OPEN) {
                closeFileIfAppropriate();
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.