Groovy Documentation

betamax.tape
[Groovy] Interface StorableTape

betamax.tape.StorableTape
  betamax.Tape
All Superinterfaces:
Tape

interface StorableTape
extends Tape

A `Tape` that can be read from an written to a backing store.


Method Summary
boolean isDirty()

@return `true` if the tape content has changed since last being loaded from disk, `false` otherwise.

void writeTo(java.io.Writer writer)

Writes the current state of the tape to `writer`.

 
Methods inherited from interface Tape
getName, isReadable, isWritable, play, record, reset, seek, setMode, size
 

Method Detail

isDirty

boolean isDirty()
Returns:
`true` if the tape content has changed since last being loaded from disk, `false` otherwise.


writeTo

void writeTo(java.io.Writer writer)
Writes the current state of the tape to `writer`.


 

Groovy Documentation