Examples of FilesystemJobLogStore


Examples of org.platformlayer.ops.jobstore.FilesystemJobLogStore

    bind(JobRegistry.class).to(PersistentJobRegistry.class).asEagerSingleton();

    File jobLogStoreBaseDir = new File("jobs");
    jobLogStoreBaseDir.mkdirs();
    bind(JobLogStore.class).toInstance(new FilesystemJobLogStore(jobLogStoreBaseDir));

    // TODO: Split off scheduler
    bind(ResultSetMappersProvider.class).asEagerSingleton();
    bind(ResultSetMappers.class).toProvider(ResultSetMappersProvider.class).in(Scopes.SINGLETON);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.