
net.java.truevfs.ext.insight.I5tSyncStatsController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truevfs-ext-insight Show documentation
Show all versions of truevfs-ext-insight Show documentation
Instruments the TrueVFS Kernel for statistics monitoring via JMX. Add the JAR artifact of this module to the run time class path to make its services available for service location in the client API modules.
The newest version!
/*
* Copyright © 2005 - 2021 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truevfs.ext.insight;
import net.java.truevfs.ext.insight.stats.SyncStats;
import javax.annotation.concurrent.ThreadSafe;
/**
* A controller for {@link SyncStats}.
*
* @author Christian Schlichtherle
*/
@ThreadSafe
final class I5tSyncStatsController extends I5tStatsController {
I5tSyncStatsController(I5tMediator mediator, int offset) {
super(mediator, offset);
}
@Override
I5tStatsView newView() {
return new I5tSyncStatsView(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy