ThreadLocalEntityStatisticsImpl.java
/*
* Copyright (C) 2003-2013 eXo Platform SAS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.exoplatform.commons.notification.stat;
import java.util.concurrent.atomic.AtomicLong;
import org.exoplatform.commons.api.notification.stat.EntityStatistics;
/**
* Created by The eXo Platform SAS
* Author : eXoPlatform
* thanhvc@exoplatform.com
* Oct 11, 2013
*/
public class ThreadLocalEntityStatisticsImpl implements EntityStatistics {
private AtomicLong deleteCount = new AtomicLong();
private AtomicLong insertCount = new AtomicLong();
private AtomicLong loadCount = new AtomicLong();
private AtomicLong updateCount = new AtomicLong();
@Override
public long getDeleteCount() {
return deleteCount.get();
}
@Override
public long getInsertCount() {
return insertCount.get();
}
@Override
public long getLoadCount() {
return loadCount.get();
}
@Override
public long getUpdateCount() {
return updateCount.get();
}
@Override
public void incrementDeleteCount() {
deleteCount.incrementAndGet();
}
@Override
public void incrementInsertCount() {
insertCount.incrementAndGet();
}
@Override
public void incrementLoadCount() {
loadCount.incrementAndGet();
}
@Override
public void incrementUpdateCount() {
updateCount.incrementAndGet();
}
@Override
public String toString() {
return new StringBuilder()
.append("EntityStatistics")
.append("[insertCount=").append(this.insertCount)
.append(",deleteCount=").append(this.deleteCount)
.append(",loadCount=").append(this.loadCount)
.append(",updateCount=").append(this.updateCount)
.append(']')
.toString();
}
}