Record Class QueueSettingsResource
java.lang.Object
java.lang.Record
com.inductiveautomation.ignition.gateway.gan.QueueSettingsResource
public record QueueSettingsResource(Set<QueueSettingsResource.QueueSettings> queueSettings)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final long
static final long
static final long
static final ResourceTypeMeta<QueueSettingsResource>
static final long
static final String
static final ResourceType
static final long
-
Constructor Summary
ConstructorsConstructorDescriptionQueueSettingsResource
(Set<QueueSettingsResource.QueueSettings> queueSettings) Creates an instance of aQueueSettingsResource
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Returns a list of queueIds for all the queues defined in the resource.final int
hashCode()
Returns a hash code value for this object.Returns the value of thequeueSettings
record component.toProperties
(String queueId) Returns a Properties object with the actual override properties that we care about for a specified queueId.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
DEFAULT_TIMEOUT_MILLIS
public static final long DEFAULT_TIMEOUT_MILLIS- See Also:
-
RPC_RETURN_TIMEOUT_MILLIS
public static final long RPC_RETURN_TIMEOUT_MILLIS- See Also:
-
DIAGNOSTIC_TIMEOUT_MILLIS
public static final long DIAGNOSTIC_TIMEOUT_MILLIS- See Also:
-
LONG_WAIT_TIMEOUT_MILLIS
public static final long LONG_WAIT_TIMEOUT_MILLIS- See Also:
-
PROXY_TIMEOUT_MILLIS
public static final long PROXY_TIMEOUT_MILLIS- See Also:
-
QUEUE_SETTINGS
- See Also:
-
RESOURCE_TYPE
-
INTERNAL_QUEUE_IDS
-
META
-
-
Constructor Details
-
QueueSettingsResource
Creates an instance of aQueueSettingsResource
record class.- Parameters:
queueSettings
- the value for thequeueSettings
record component
-
-
Method Details
-
toProperties
Returns a Properties object with the actual override properties that we care about for a specified queueId. -
getQueueIds
Returns a list of queueIds for all the queues defined in the resource. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
queueSettings
Returns the value of thequeueSettings
record component.- Returns:
- the value of the
queueSettings
record component
-