Examples of PaasConnectionFactory


Examples of com.netflix.staash.connection.PaasConnectionFactory

    MetaDao provideCqlMetaDaoNew(@Named("astmetaks") Keyspace keyspace) {
        return new AstyanaxMetaDaoImpl(keyspace);
    }
    @Provides
    MetaService providePaasMetaService(@Named("newmetadao") MetaDao metad, CacheService cache) {
      ConnectionFactory fac = new PaasConnectionFactory("astyanax", null);
        PaasMetaService metasvc = new PaasMetaService(metad, fac, cache);
        return metasvc;
    }
View Full Code Here

Examples of com.netflix.staash.connection.PaasConnectionFactory

        PaasMetaService metasvc = new PaasMetaService(metad, fac, cache);
        return metasvc;
    }
    @Provides
    ConnectionFactory provideConnectionFactory() {
        return new PaasConnectionFactory("astyanax", null);
    }
View Full Code Here

Examples of com.netflix.staash.connection.PaasConnectionFactory

    ConnectionFactory provideConnectionFactory() {
        return new PaasConnectionFactory("astyanax", null);
    }
    @Provides
    DataService providePaasDataService( MetaService metasvc) {
      ConnectionFactory fac = new PaasConnectionFactory("astyanax", null);
      PaasDataService datasvc = new PaasDataService(metasvc, fac);
        return datasvc;
    }
View Full Code Here

Examples of com.netflix.staash.connection.PaasConnectionFactory

    CacheService provideCacheService(@Named("newmetadao") MetaDao metad) {
        return new CacheService(metad);
    }
    @Provides
    ConnectionFactory provideConnectionFactory(@Named("paas.cassclient") String clientType, EurekaAstyanaxHostSupplier hs) {
        return new PaasConnectionFactory(clientType, hs);
    }
View Full Code Here

Examples of com.netflix.staash.connection.PaasConnectionFactory

    CacheService provideCacheService(@Named("newmetadao") MetaDao metad) {
        return new CacheService(metad);
    }
    @Provides
    ConnectionFactory provideConnectionFactory(@Named("staash.cassclient") String clientType,EurekaAstyanaxHostSupplier hs) {
        return new PaasConnectionFactory(clientType, hs);
    }
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.