org.apache.pekko.persistence.CapabilityFlags.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pekko-persistence-tck_3 Show documentation
Show all versions of pekko-persistence-tck_3 Show documentation
Apache Pekko is a toolkit for building highly concurrent, distributed, and resilient message-driven applications for Java and Scala.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* license agreements; and to You under the Apache License, version 2.0:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* This file is part of the Apache Pekko project, which was derived from Akka.
*/
/*
* Copyright (C) 2009-2022 Lightbend Inc.
*/
package org.apache.pekko.persistence
import scala.language.implicitConversions
sealed abstract class CapabilityFlag {
private val capturedStack = new Throwable().getStackTrace
.filter(_.getMethodName.startsWith("supports"))
.find { el =>
val clazz = Class.forName(el.getClassName)
clazz.getDeclaredMethod(el.getMethodName).getReturnType == classOf[CapabilityFlag]
}
.map { _.getMethodName }
.getOrElse("[unknown]")
def name: String = capturedStack
def value: Boolean
}
object CapabilityFlag {
def on(): CapabilityFlag =
new CapabilityFlag { override def value = true }
def off(): CapabilityFlag =
new CapabilityFlag { override def value = false }
/** Java DSL */
def create(`val`: Boolean): CapabilityFlag =
new CapabilityFlag { override def value = `val` }
// conversions
implicit def mkFlag(v: Boolean): CapabilityFlag =
new CapabilityFlag { override def value = v }
}
sealed trait CapabilityFlags
//#journal-flags
trait JournalCapabilityFlags extends CapabilityFlags {
/**
* When `true` enables tests which check if the Journal properly rejects
* writes of objects which are not `java.lang.Serializable`.
*/
protected def supportsRejectingNonSerializableObjects: CapabilityFlag
/**
* When `true` enables tests which check if the Journal properly serialize and
* deserialize events.
*/
protected def supportsSerialization: CapabilityFlag
/**
* When `true` enables tests which check if the Journal stores and returns
* metadata for an event
*/
protected def supportsMetadata: CapabilityFlag
}
//#journal-flags
//#snapshot-store-flags
trait SnapshotStoreCapabilityFlags extends CapabilityFlags {
/**
* When `true` enables tests which check if the snapshot store properly serialize and
* deserialize snapshots.
*/
protected def supportsSerialization: CapabilityFlag
/**
* When `true` enables tests which check if the snapshot store properly stores and
* loads metadata (needed for replication) along with the snapshots
*/
protected def supportsMetadata: CapabilityFlag
}
//#snapshot-store-flags
© 2015 - 2025 Weber Informatics LLC | Privacy Policy