
com.google.caliper.runner.server.ServerSocketService_Factory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caliper-runner Show documentation
Show all versions of caliper-runner Show documentation
Caliper's command line benchmark runner tool.
The newest version!
// Generated by Dagger (https://google.github.io/dagger).
package com.google.caliper.runner.server;
import com.google.caliper.runner.options.CaliperOptions;
import dagger.internal.Factory;
import javax.inject.Provider;
public final class ServerSocketService_Factory implements Factory {
private final Provider caliperOptionsProvider;
public ServerSocketService_Factory(Provider caliperOptionsProvider) {
this.caliperOptionsProvider = caliperOptionsProvider;
}
@Override
public ServerSocketService get() {
return new ServerSocketService(caliperOptionsProvider.get());
}
public static ServerSocketService_Factory create(
Provider caliperOptionsProvider) {
return new ServerSocketService_Factory(caliperOptionsProvider);
}
public static ServerSocketService newInstance(CaliperOptions caliperOptions) {
return new ServerSocketService(caliperOptions);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy