Interface ScanDirectives
-
public interface ScanDirectives
Encapsulates information about how a scan should be executed. This is the return type forScanDispatcher.dispatch(DispatchParameters)
. To create an instance of this usebuilder()
- Since:
- 2.1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ScanDirectives.Builder
static class
ScanDirectives.CacheUsage
Communicates how a scan should use cache.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static ScanDirectives.Builder
builder()
ScanDirectives.CacheUsage
getDataCacheUsage()
String
getExecutorName()
ScanDirectives.CacheUsage
getIndexCacheUsage()
-
-
-
Method Detail
-
getExecutorName
String getExecutorName()
-
getDataCacheUsage
ScanDirectives.CacheUsage getDataCacheUsage()
-
getIndexCacheUsage
ScanDirectives.CacheUsage getIndexCacheUsage()
-
builder
static ScanDirectives.Builder builder()
- Returns:
- a
ScanDirectives
builder
-
-