inMemory static method

InMemoryConfiguration inMemory(
  1. List<SchemaObject> schemaObjects,
  2. {String? fifoFilesFallbackPath,
  3. String? path,
  4. int? maxNumberOfActiveVersions}
)

Constructs a InMemoryConfiguration

Implementation

static InMemoryConfiguration inMemory(
  List<SchemaObject> schemaObjects, {
  String? fifoFilesFallbackPath,
  String? path,
  int? maxNumberOfActiveVersions,
}) =>
    InMemoryConfiguration._(
      schemaObjects,
      fifoFilesFallbackPath: fifoFilesFallbackPath,
      path: path,
      maxNumberOfActiveVersions: maxNumberOfActiveVersions,
    );