com.oath.micro.server.events.JobCompleteEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-events Show documentation
Show all versions of micro-events Show documentation
Opinionated rest microservices
package com.oath.micro.server.events;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public class JobCompleteEvent {
private final Date date = new Date();
private final long correlationId;
private final String type;
private final long errors;
private final long dataSize;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy