Package org.jboss.aerogear.simplepush.server.datastore

Examples of org.jboss.aerogear.simplepush.server.datastore.InMemoryDataStore


                .build();
        return new UserAgentReaperHandler(simplePushServer(config));
    }

    private SimplePushServer simplePushServer(final SimplePushServerConfig config) {
        final DataStore store = new InMemoryDataStore();
        final byte[] privateKey = DefaultSimplePushServer.generateAndStorePrivateKey(store, config);
        return new DefaultSimplePushServer(store, config, privateKey);
    }
View Full Code Here

TOP

Related Classes of org.jboss.aerogear.simplepush.server.datastore.InMemoryDataStore

Copyright © 2018 www.massapicom. 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.