All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.postgresql.hostchooser.HostChooser Maven / Gradle / Ivy

/*-------------------------------------------------------------------------
 *
 * Copyright (c) 2014, PostgreSQL Global Development Group
 *
 *
 *-------------------------------------------------------------------------
 */
package org.postgresql.hostchooser;

import java.util.Iterator;

import org.postgresql.util.HostSpec;

/**
 * Lists connections in preferred order.
 */
public interface HostChooser {
    /**
     * Lists connection hosts in preferred order.
     *
     * @return connection hosts in preferred order.
     */
    Iterator iterator();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy