StreamingSaveable

com.jsuereth.pgp.StreamingSaveable

This trait represents something that can be saved. If the class can provide a single saveTo(OutputStream) method, then this trait provides corresponding saveToFile and saveToString methods.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def saveTo(output: OutputStream): Unit

Saves the current entity to an output stream.

Saves the current entity to an output stream.

Attributes

Concrete methods

def saveToFile(file: File): Unit

Saves the current entity to a file.

Saves the current entity to a file.

Attributes

def saveToString: String

Saves the current entity into a string.

Saves the current entity into a string.

Attributes