Printer

Basic Operation of Printers

See Basic Operation of Writers since the operation of Writer and that of Printer is very similar.

Full API

Jusdl.Components.Sinks.PrinterType

Printer(input::Bus{Union{Missing, T}}, buflen=64, plugin=nothing) where T

Constructs a Printer with input bus input. buflen is the length of its internal buflen. plugin is data proccessing tool.

source
Base.printMethod
print(printer::Printer, td, xd)

Prints xd corresponding to xd to the console.

source
Base.openMethod
open(printer::Printer)

Does nothing. Just a common interface function ot AbstractSink interface.

source
Base.closeMethod
close(printer::Printer)

Does nothing. Just a common interface function ot AbstractSink interface.

source