com.transferwise.tasks.buckets.IBucketsManager 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.
package com.transferwise.tasks.buckets;
import java.util.List;
public interface IBucketsManager {
String DEFAULT_ID = "default";
BucketProperties getBucketProperties(String bucketId);
void registerBucketProperties(String bucketId, BucketProperties bucketProperties);
List getBucketIds();
boolean isConfiguredBucket(String bucketId);
}