Examples of SessionStats


Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

    public SessionDelegate(@Nonnull ContentSession contentSession, RefreshStrategy refreshStrategy) {
        this.contentSession = checkNotNull(contentSession);
        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
    }
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

            @Nonnull StatisticManager statisticManager) {
        this.contentSession = checkNotNull(contentSession);
        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
        readDuration = statisticManager.getCounter(SESSION_READ_DURATION);
        writeCounter = statisticManager.getCounter(SESSION_WRITE_COUNTER);
        writeDuration = statisticManager.getCounter(SESSION_WRITE_DURATION);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        this.clock = checkNotNull(clock);
        this.loginTime = clock.getTime();
        this.accessTime = loginTime;
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

    public SessionDelegate(@Nonnull ContentSession contentSession, RefreshStrategy refreshStrategy) {
        this.contentSession = checkNotNull(contentSession);
        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
    }
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        this.clock = checkNotNull(clock);
        this.loginTime = clock.getTime();
        this.accessTime = loginTime;
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        this.clock = checkNotNull(clock);
        this.loginTime = clock.getTime();
        this.accessTime = loginTime;
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        this.clock = checkNotNull(clock);
        this.loginTime = clock.getTime();
        this.accessTime = loginTime;
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.clock = checkNotNull(clock);
        this.sessionStats = new SessionStats(contentSession.toString(),
                contentSession.getAuthInfo(), clock);
        this.sessionCounters = sessionStats.getCounters();
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
        readDuration = statisticManager.getCounter(SESSION_READ_DURATION);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.threadSaveCount = checkNotNull(threadSaveCount);
        this.sessionSaveCount = getThreadSaveCount();
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        this.clock = checkNotNull(clock);
        this.loginTime = clock.getTime();
        this.accessTime = loginTime;
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
View Full Code Here

Examples of org.apache.jackrabbit.oak.jcr.session.SessionStats

            @Nonnull StatisticManager statisticManager) {
        this.contentSession = checkNotNull(contentSession);
        this.refreshStrategy = checkNotNull(refreshStrategy);
        this.root = contentSession.getLatestRoot();
        this.idManager = new IdentifierManager(root);
        this.sessionStats = new SessionStats(this);
        checkNotNull(statisticManager);
        readCounter = statisticManager.getCounter(SESSION_READ_COUNTER);
        readDuration = statisticManager.getCounter(SESSION_READ_DURATION);
        writeCounter = statisticManager.getCounter(SESSION_WRITE_COUNTER);
        writeDuration = statisticManager.getCounter(SESSION_WRITE_DURATION);
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.