def tupled =()

in core/src/main/scala/org/apache/pekko/persistence/jdbc/state/DurableStateTables.scala [36:54]


    def tupled = (apply _).tupled
  }
}

/**
 * INTERNAL API
 */
@InternalApi private[pekko] trait DurableStateTables {
  val profile: slick.jdbc.JdbcProfile
  import profile.api._
  def durableStateTableCfg: DurableStateTableConfiguration

  import DurableStateTables._

  class DurableState(_tableTag: Tag)
      extends Table[DurableStateRow](
        _tableTag,
        _schemaName = durableStateTableCfg.schemaName,
        _tableName = durableStateTableCfg.tableName) {