de.schlichtherle.truezip.fs.inst.InstrumentingManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truezip-extension-jmx-jul Show documentation
Show all versions of truezip-extension-jmx-jul Show documentation
This module provides a file system manager and an I/O pool service
for managing and monitoring TrueZIP via JMX and java.util.logging.
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 (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package de.schlichtherle.truezip.fs.inst;
import de.schlichtherle.truezip.fs.*;
import javax.annotation.concurrent.Immutable;
/**
* @author Christian Schlichtherle
*/
@Immutable
public class InstrumentingManager
extends FsDecoratingManager {
protected final InstrumentingDirector> director;
public InstrumentingManager(final FsManager manager, final InstrumentingDirector> director) {
super(manager);
if (null == director)
throw new NullPointerException();
this.director = director;
}
@Override
public FsController> getController(FsMountPoint mountPoint, FsCompositeDriver driver) {
return director.instrument(delegate.getController(mountPoint, director.instrument(driver, this)), this);
}
}