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 bothTemporalPointType
andQueryablePointType
.
- 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 class
DefaultProcessingContext.AbstractBuilder<K extends QueryKey<T>,
T extends TemporalPointType & QueryablePointType<T>, B extends DefaultProcessingContext.AbstractBuilder<K, T, B>> Abstract builder for creatingProcessingContext
instances.static class
DefaultProcessingContext.Builder<K extends QueryKey<T>,
T extends TemporalPointType & QueryablePointType<T>> Builder for creatingDefaultProcessingContext
instances. -
Constructor Summary
ConstructorsConstructorDescriptionDefaultProcessingContext
(Map<K, PropertySet> properties) Constructs a newDefaultProcessingContext
with 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 constructingDefaultProcessingContext
instances.final boolean
Indicates 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 int
hashCode()
Returns a hash code value for this object.Returns the value of theproperties
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
DefaultProcessingContext
Constructs a newDefaultProcessingContext
with 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 constructingDefaultProcessingContext
instances.- Type Parameters:
K
- The type of query key.T
- The type of temporal point type.- Returns:
- A new
DefaultProcessingContext.Builder
instance.
-
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:
getContextValue
in 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
Optional
containing the property value if it exists, or an emptyOptional
if 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 theproperties
record component.- Returns:
- the value of the
properties
record component
-