Record Class DefaultProcessingContext<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>>
java.lang.Object
java.lang.Record
com.inductiveautomation.historian.gateway.api.query.processor.DefaultProcessingContext<K,T>
- Type Parameters:
K- The type of query key, which extendsQueryKey.T- The type of temporal point type, which extends bothTemporalPointTypeandQueryablePointType.
- All Implemented Interfaces:
ProcessingContext<K,T>
public record DefaultProcessingContext<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>> (Map<K extends QueryKey<T>,PropertySet> properties)
extends Record
implements ProcessingContext<K,T>
Base implementation of
ProcessingContext that maintains properties for query keys.
This record provides a concrete implementation of the ProcessingContext interface,
storing a mapping of query keys to their associated PropertySet instances.
It ensures the immutability of the property map and provides utility methods for accessing
and manipulating context values.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classDefaultProcessingContext.AbstractBuilder<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>, B extends DefaultProcessingContext.AbstractBuilder<K, T, B>> Abstract builder for creatingProcessingContextinstances.static classDefaultProcessingContext.Builder<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>> Builder for creatingDefaultProcessingContextinstances. -
Constructor Summary
ConstructorsConstructorDescriptionDefaultProcessingContext(Map<K, PropertySet> properties) Constructs a newDefaultProcessingContextwith the specified properties. -
Method Summary
Modifier and TypeMethodDescriptionstatic <K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>>
DefaultProcessingContext.Builder<K,T> builder()Creates a new builder for constructingDefaultProcessingContextinstances.final booleanIndicates whether some other object is "equal to" this one.<V> Optional<V>getContextValue(K queryKey, Property<V> property) Retrieves a property value associated with a specific query key.final inthashCode()Returns a hash code value for this object.Returns the value of thepropertiesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DefaultProcessingContext
Constructs a newDefaultProcessingContextwith the specified properties.Ensures that the provided properties map is not null and creates an immutable copy of it.
- Parameters:
properties- A map of query keys to their associated property sets.- Throws:
NullPointerException- if the properties map is null.
-
-
Method Details
-
builder
public static <K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>> DefaultProcessingContext.Builder<K,T> builder()Creates a new builder for constructingDefaultProcessingContextinstances.- Type Parameters:
K- The type of query key.T- The type of temporal point type.- Returns:
- A new
DefaultProcessingContext.Builderinstance.
-
getContextValue
Retrieves a property value associated with a specific query key.This method allows querying for a property value based on the provided query key and property key.
- Specified by:
getContextValuein interfaceProcessingContext<K extends QueryKey<T>,T extends TemporalPointType & QueryablePointType<T>> - Type Parameters:
V- The type of the property value.- Parameters:
queryKey- The query key to retrieve the property for.property- The property key to identify the desired value.- Returns:
- An
Optionalcontaining the property value if it exists, or an emptyOptionalif not.
-
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). -
properties
Returns the value of thepropertiesrecord component.- Returns:
- the value of the
propertiesrecord component
-