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

org.zbus.client.service.ServiceConfig Maven / Gradle / Ivy

package org.zbus.client.service;

import org.zbus.client.MqConfig;




public class ServiceConfig extends MqConfig {
	private ServiceHandler serviceHandler;  
	private int threadCount = 1; 
	private int readTimeout = 10000;
	
	public int getThreadCount() {
		return threadCount;
	}
	public void setThreadCount(int threadCount) {
		this.threadCount = threadCount;
	}
	
	public ServiceHandler getServiceHandler() {
		return serviceHandler;
	}
	public void setServiceHandler(ServiceHandler serviceHandler) {
		this.serviceHandler = serviceHandler;
	}
	public int getReadTimeout() {
		return readTimeout;
	}
	public void setReadTimeout(int readTimeout) {
		this.readTimeout = readTimeout;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy