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

org.postgresql.adba.execution.NioServiceFactory Maven / Gradle / Ivy

The newest version!
package org.postgresql.adba.execution;

import java.io.IOException;

/**
 * Factory to create the {@link NioService}.
 * 
 * @author Daniel Sagenschneider
 */
public interface NioServiceFactory {

  /**
   * Creates the {@link NioService}.
   * 
   * @param context {@link NioServiceContext}.
   * @return {@link NioService}.
   * @throws IOException If fails to create the {@link NioService}.
   */
  NioService createNioService(NioServiceContext context) throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy