Package com.xmultra.log

Examples of com.xmultra.log.DocMeter


        }

        msgHolder = new MessageHolder();

        // Creates a DocMeter that shows average rates over the last 100 docs.
        docMeter = new DocMeter(100);
        // Get the directory where the file to process is found.
        srcLocation = getLocationDirectory(XmultraConfig.SRC_LOCATION_ELEMENT);
        if (srcLocation == null) {
            return false;
        }
View Full Code Here


        this.password =
            xmlParseUtils.getAttributeValueFromNode(aProcessorNode,
                                                    XmultraConfig.PASSWORD_ATTRIBUTE);

        // Creates a DocMeter that shows average rates over the last 100 docs.
         this.docMeter = new DocMeter(100);

           // Get the number of retries.
        String noRetriesStr =
            xmlParseUtils.getAttributeValueFromNode(aProcessorNode,
                                                    XmultraConfig.NUMBER_RETRIES);
View Full Code Here

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Creates a DocMeter that shows average rates over the last 100 docs.
        docMeter = new DocMeter(100);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Creates a DocMeter that shows average rates over the last 100 docs.

        docMeter = new DocMeter(100);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);
View Full Code Here

TOP

Related Classes of com.xmultra.log.DocMeter

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.