io.camunda.zeebe.process.test.engine.db.package-info Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Zeebe Community License 1.1. You may not use this file
* except in compliance with the Zeebe Community License 1.1.
*/
/**
* This package contains classes implementing an in memory database for the Zeebe test engine.
*
* The database can be obtained via: {@code new InMemoryZeebeDbFactory().createDb(null);}
*
*
Notes
*
*
* - The database must not be used concurrently by multiple threads
*
- The database supports only a single transaction (Technically it's possible to spawn
* multiple transactions with "read committed" isolation level. But there is no locking so the
* last commit will overwrite previous commits.)
*
*/
package io.camunda.zeebe.process.test.engine.db;