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

com.atomikos.icatch.event.Event Maven / Gradle / Ivy

/**
 * Copyright (C) 2000-2016 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.icatch.event;

import java.io.Serializable;

 /**
  * Significant core events that are communicated to the outside world.
  */
public abstract class Event implements Serializable {

	private static final long serialVersionUID = 1L;
	
	public long eventCreationTimestamp;
	
	protected Event() {
		this.eventCreationTimestamp = System.currentTimeMillis();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy