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

com.oath.micro.server.events.JobCompleteEvent Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
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