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

com.transferwise.tasks.handler.interfaces.ITaskHandlerRegistry Maven / Gradle / Ivy

There is a newer version: 1.43.0
Show newest version
package com.transferwise.tasks.handler.interfaces;

import com.transferwise.tasks.domain.IBaseTask;
import java.time.ZonedDateTime;

@SuppressWarnings("unused")
public interface ITaskHandlerRegistry {

  ITaskHandler getTaskHandler(IBaseTask task);

  ITaskProcessingPolicy getTaskProcessingPolicy(IBaseTask task);

  ZonedDateTime getExpectedProcessingMoment(IBaseTask task);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy