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

es.codeurjc.squirrel.drey.WorkerEvent Maven / Gradle / Ivy

Go to download

Java framework aimed to support distributed execution of algorithms thanks to Hazelcast technology

There is a newer version: 2.0.0
Show newest version
package es.codeurjc.squirrel.drey;

import java.io.Serializable;

public class WorkerEvent implements Serializable {
	
	private static final long serialVersionUID = 1L;
	
	String workerId;
	String name;
	Object content;
	
	public WorkerEvent(String workerId, String name, Object content) {
		this.workerId = workerId;
		this.name = name;
		this.content = content;
	}
	
	public String getWorkerId() {
		return this.workerId;
	}
	
	public void setWorkerId(String workerId) {
		this.workerId = workerId;
	}
	
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Object getContent() {
		return content;
	}

	public void setContent(Object content) {
		this.content = content;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy