Public Member Functions | |
SettingsReadWrite (IComm connection) | |
Must pass an opened comm connection that can remain opened if listening for unsolicited msgs from printer. More... | |
SettingsReadWrite (JsonComm mgmtComm) | |
Constructor called when an mgmt comm object already exists for listening for mgmt msgs. More... | |
SettingsReadWrite (String commDescriptor) | |
Constructor called when creating a connection managed by the SDK. More... | |
void | close () throws Exception |
void | Dispose () |
Map< String, Setting > | GetAllProperties () |
Inherited from ISettingsReadWrite.GetAllProperties. | |
Map< String, String > | GetAllValues () |
Inherited from ISettingsReadWrite.GetAllValues. | |
Map< String, Setting > | GetProperties (List< String > keys) |
Inherited from ISettingsReadWrite.GetProperties. | |
Setting | GetProperties (String key) |
Inherited from ISettingsReadWrite.GetProperties. | |
String | GetValue (String key) |
Inherited from ISettingsReadWrite.GetValue. | |
Map< String, String > | GetValues (List< String > keys) |
Inherited from ISettingsReadWrite.GetValues. | |
boolean | SetValue (String keyToSet, String valueToSet) |
Inherited from ISettingsReadWrite.SetValue. | |
boolean | SetValues (Map< String, String > keysToSet) |
Inherited from ISettingsReadWrite.SetValues. | |
Protected Member Functions | |
void | Dispose (boolean disposing) |
void | finalize () throws Throwable |
SettingsReadWrite | ( | IComm | connection | ) |
Must pass an opened comm connection that can remain opened if listening for unsolicited msgs from printer.
A connection is necessary to send/receive printer status msgs.
SettingsReadWrite | ( | JsonComm | mgmtComm | ) |
Constructor called when an mgmt comm object already exists for listening for mgmt msgs.
JsonComm object per printer that is listening and parsing fully formed mgmt msgs and forwarding to all mgmt msg listeners.
SettingsReadWrite | ( | String | commDescriptor | ) |
Constructor called when creating a connection managed by the SDK.
commDescriptor is descriptor for the communication used to connect with printer.
TCP descriptor format: "ip" or "ip:port"
e.g. "127.0.0.1" or "127.0.0.1:3007"
If port is not provided, default value is used.