Sha256: 8aab884202e3b2b17ee80ba612adb079d87b3dbf748042f4cd0c72cd1479e9e4

Contents?: true

Size: 635 Bytes

Versions: 1

Compression:

Stored size: 635 Bytes

Contents

// Represents the scanner state.


message ScannerStateSection {

  // Supported device states.
  enum StateType {

    // Device is ready to accept jobs. Self-testing, low power and all other
    // states in which the device can start processing newly submitted jobs
    // without user intervention should be mapped into this state.
    IDLE = 0;

    // Processing jobs (e.g. printing).
    PROCESSING = 1;

    // Device cannot process jobs. User should fix the problem to resume the
    // processing (e.g. printer is out of paper).
    STOPPED = 2;
  }

  // Current scanner state (required).
  optional StateType state = 1;

}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kinokero-0.0.5 lib/proto/scanner_state_section.proto