JavaBackfila

class JavaBackfila @Inject() constructor(backfila: Backfila)

Programmatic access to backfila runs for Java. This represents the customer's use of the Backfila UI in tests. Note that passing in Parameters objects for testing is not supported in Java. You must use the parameterData map instead.

Kotlin customers should use Backfila directly.

Constructors

JavaBackfila
Link copied to clipboard
@Inject()
fun JavaBackfila(backfila: Backfila)

Functions

createDryRun
Link copied to clipboard
fun <Type : Backfill> createDryRun(backfill: Class<Type>): BackfillRun<Type>
fun <Type : Backfill> createDryRun(backfill: Class<Type>, parameterData: Map<String, ByteString>, rangeStart: String? = null, rangeEnd: String? = null): BackfillRun<Type>
createWetRun
Link copied to clipboard
fun <Type : Backfill> createWetRun(backfill: Class<Type>): BackfillRun<Type>
fun <Type : Backfill> createWetRun(backfill: Class<Type>, parameterData: Map<String, ByteString>, rangeStart: String? = null, rangeEnd: String? = null): BackfillRun<Type>

Properties

configureServiceData
Link copied to clipboard
val configureServiceData: ConfigureServiceRequest?