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-2023 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.icatch.event;

/**
  * Significant core events that are communicated to plugged-in listeners.
  */
public abstract class Event {
	
	public final long eventCreationTimestamp;
	
	protected Event() {
		this.eventCreationTimestamp = System.currentTimeMillis();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy