
org.sapia.ubik.rmi.replication.ReplicationEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sapia_ubik Show documentation
Show all versions of sapia_ubik Show documentation
A RMI-like distributed computing framework
The newest version!
package org.sapia.ubik.rmi.replication;
import org.sapia.ubik.rmi.interceptor.Event;
/**
* @author Yanick Duchesne
*
* - Copyright:
- Copyright © 2002-2004 Sapia Open Source Software. All Rights Reserved.
* - License:
- Read the license.txt file of the jar or visit the
* license page at the Sapia OSS web site
*
*/
public class ReplicationEvent implements Event {
private ReplicatedCommand _cmd;
/**
* Creates an instance of this class with the given command.
*/
public ReplicationEvent(ReplicatedCommand command) {
_cmd = command;
}
/**
* @return the ReplicatedCommand
that this instance holds.
*/
public ReplicatedCommand getReplicatedCommand() {
return _cmd;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy