Package org.apache.jackrabbit.oak.jcr.session

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


    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


            @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

        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

    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

        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

        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

        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

        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

        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

            @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

Related Classes of org.apache.jackrabbit.oak.jcr.session.SessionStats$Counters

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.