File tree Expand file tree Collapse file tree
common/src/main/java/com/skyflow
v3/src/main/java/com/skyflow/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010import java .util .LinkedHashMap ;
1111
1212class BaseSkyflow {
13+ // base skyflow class
1314 private final BaseSkyflowClientBuilder builder ;
14-
1515 protected BaseSkyflow (BaseSkyflowClientBuilder builder ) {
1616 this .builder = builder ;
1717 }
18-
1918 public LogLevel getLogLevel () {
2019 return this .builder .logLevel ;
2120 }
22-
2321 public VaultConfig getVaultConfig () {
2422 Object [] array = this .builder .vaultConfigMap .values ().toArray ();
2523 return (VaultConfig ) array [0 ];
2624 }
27-
2825 static class BaseSkyflowClientBuilder {
2926 protected final LinkedHashMap <String , VaultConfig > vaultConfigMap ;
3027 protected Credentials skyflowCredentials ;
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ public final class Constants extends BaseConstants {
99 public static final Integer MAX_INSERT_BATCH_SIZE = 1000 ;
1010 public static final Integer INSERT_CONCURRENCY_LIMIT = 10 ;
1111 public static final Integer MAX_INSERT_CONCURRENCY_LIMIT = 10 ;
12-
1312 public static final Integer DETOKENIZE_BATCH_SIZE = 50 ;
1413 public static final Integer DETOKENIZE_CONCURRENCY_LIMIT = 10 ;
1514 public static final Integer MAX_DETOKENIZE_BATCH_SIZE = 1000 ;
You can’t perform that action at this time.
0 commit comments