
com.launchdarkly.sdk.server.migrations.MigrationExecutionMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.sdk.server.migrations;
/**
* Execution mode for a migration.
*
* This applies only to a single read, not multiple reads using the same migration.
*/
public enum MigrationExecutionMode {
/**
* Execute one read fully before executing another read.
*/
SERIAL,
/**
* Start reads in parallel and wait for them to both finish.
*/
PARALLEL
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy