Uses of Interface
io.permazen.core.util.ObjIdQueue

Packages that use ObjIdQueue
Package
Description
Permazen core API utility classes.
  • Uses of ObjIdQueue in io.permazen.core.util

    Methods in io.permazen.core.util that return ObjIdQueue
    Modifier and Type
    Method
    Description
    static ObjIdQueue
    ObjIdQueues.fifo()
    Create a new empty instance with first-in-first-out (FIFO) behavior.
    static ObjIdQueue
    ObjIdQueues.fifo(ObjIdSet initial)
    Create a new instance with first-in-first-out (FIFO) behavior and initial contents copied from the given set.
    static ObjIdQueue
    ObjIdQueues.lifo()
    Create a new empty instance with last-in-first-out (LIFO) behavior.
    static ObjIdQueue
    ObjIdQueues.lifo(ObjIdSet initial)
    Create a new instance with last-in-first-out (LIFO) behavior and initial contents copied from the given set.
    static ObjIdQueue
    ObjIdQueues.unordered()
    Create a new empty instance with no guaranted ordering.
    static ObjIdQueue
    ObjIdQueues.unordered(ObjIdSet initial)
    Create a new instance with no guaranted ordering and initial contents copied from the given set.