com.transferwise.tasks.domain.FullTaskRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tw-tasks-core Show documentation
Show all versions of tw-tasks-core Show documentation
Transferwise Tasks Executor - Fire and forget until Alert.
The newest version!
package com.transferwise.tasks.domain;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.time.ZonedDateTime;
import java.util.Objects;
import java.util.UUID;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class FullTaskRecord implements ITask {
private UUID id;
private String type;
private String subType;
@SuppressFBWarnings("EI_EXPOSE_REP")
private byte[] data;
private String status;
private long version;
private long processingTriesCount;
private int priority;
private ZonedDateTime stateTime;
private ZonedDateTime nextEventTime;
private String processingClientId;
private TaskContext taskContext;
@Override
public ITaskVersionId getVersionId() {
return new TaskVersionId(id, version);
}
}