Package org.fcrepo.server.journal.readerwriter.multicast.request

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

Related Classes of org.fcrepo.server.journal.readerwriter.multicast.request.WriteEntryRequest

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.