Package org.apache.openejb.client.event

Examples of org.apache.openejb.client.event.RandomFailoverSelection


public class RandomConnectionStrategy extends AbstractConnectionStrategy {

    @Override
    protected FailoverSelection createFailureEvent(final Set<URI> remaining, final Set<URI> failed, final URI uri) {
        return new RandomFailoverSelection(remaining, failed, uri);
    }
View Full Code Here


public class RandomConnectionStrategy extends AbstractConnectionStrategy {

    @Override
    protected FailoverSelection createFailureEvent(Set<URI> remaining, Set<URI> failed, URI uri) {
        return new RandomFailoverSelection(remaining, failed, uri);
    }
View Full Code Here

TOP

Related Classes of org.apache.openejb.client.event.RandomFailoverSelection

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.