swaydb.core.seek.Seek.scala Maven / Gradle / Ivy
/*
* Copyright (c) 2019 Simer Plaha (@simerplaha)
*
* This file is a part of SwayDB.
*
* SwayDB is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* SwayDB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with SwayDB. If not, see .
*/
package swaydb.core.seek
import swaydb.core.data.KeyValue
private[swaydb] object Seek {
sealed trait Current
object Current {
case object Stop extends Seek.Current
case class Stash(current: KeyValue.ReadOnly.SegmentResponse) extends Seek.Current
}
sealed trait Next
object Next {
case class Stop(stateID: Long) extends Seek.Next
case class Stash(next: KeyValue.ReadOnly.Put, stateID: Long) extends Seek.Next
}
case object Read extends Seek.Current with Seek.Next
}