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

org.omg.dds.rpc.ServerParams Maven / Gradle / Ivy

There is a newer version: 1.0_beta2
Show newest version
package org.omg.dds.rpc;

import java.util.concurrent.ExecutorService;

public interface ServerParams {

    public ServerParams withDefaultServiceParams(ServiceParams serviceParams);
    public ServerParams withExecutor(ExecutorService executor);
    
    public ServiceParams getDefaultServiceParams();
    public ExecutorService getExecutor();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy