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

org.moskito.central.endpoints.rmi.RMIEndpointServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
package org.moskito.central.endpoints.rmi;

import org.moskito.central.Central;
import org.moskito.central.Snapshot;

/**
 * Central RMI service implementation.
 * 
 * @author dagafonov
 * 
 */
public class RMIEndpointServiceImpl implements RMIEndpointService {

	/**
	 * Instance of local Central.
	 */
	private Central central;

	/**
	 * Default constructor.
	 */
	public RMIEndpointServiceImpl() {
		central = Central.getInstance();
	}

	@Override
	public void processIncomingSnapshot(Snapshot snapshot) throws RMIEndpointServiceException {
		central.processIncomingSnapshot(snapshot);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy