Backfila
interface Backfila
Content copied to clipboard
Programmatic access to backfila UI features. This is useful in tests and development; in production use the Backfila dashboard UI. Java customers should use JavaBackfila.
Functions
createDryRun
Link copied to clipboard
abstract fun <Type : Backfill> createDryRun(backfill: KClass<Type>, parameters: Map<String, ByteString>, rangeStart: String?, rangeEnd: String?): BackfillRun<Type>
Content copied to clipboard
createWetRun
Link copied to clipboard
abstract fun <Type : Backfill> createWetRun(backfillType: KClass<Type>, parameters: Map<String, ByteString>, rangeStart: String?, rangeEnd: String?): BackfillRun<Type>
Content copied to clipboard
Properties
configureServiceData
Link copied to clipboard
Extensions
createDryRun
Link copied to clipboard
inline fun <Type : Backfill> Backfila.createDryRun(parameters: Any? = null, parameterData: Map<String, ByteString> = mapOf(), rangeStart: String? = null, rangeEnd: String? = null): BackfillRun<Type>
Content copied to clipboard
createWetRun
Link copied to clipboard
inline fun <Type : Backfill> Backfila.createWetRun(parameters: Any? = null, parameterData: Map<String, ByteString> = mapOf(), rangeStart: String? = null, rangeEnd: String? = null): BackfillRun<Type>
Content copied to clipboard