Interface PrintResultListener


public interface PrintResultListener

Receives the outcome of a print request. Always invoked on the EDT.

Pass into Printer.print(String, String, PrintResultListener) or Display.print(String, String, PrintResultListener).

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called once when the print flow finishes (job queued, dialog dismissed, or failure).
  • Method Details

    • onResult

      void onResult(PrintResult result)
      Called once when the print flow finishes (job queued, dialog dismissed, or failure). Never invoked more than once for the same print request.