Package net.greghaines.jesque

Examples of net.greghaines.jesque.ConfigBuilder


        new FailureDAORedisImpl(null, null);
    }

    @Test(expected = IllegalArgumentException.class)
    public void testConstructor_NullPool() {
        final Config config = new ConfigBuilder().build();
        new FailureDAORedisImpl(config, null);
    }
View Full Code Here

TOP

Related Classes of net.greghaines.jesque.ConfigBuilder

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.