Uses of Class
com.scivicslab.pojoactor.core.AttributeKey
Packages that use AttributeKey
-
Uses of AttributeKey in com.scivicslab.pojoactor.core
Methods in com.scivicslab.pojoactor.core that return AttributeKeyMethods in com.scivicslab.pojoactor.core with parameters of type AttributeKeyModifier and TypeMethodDescription<V> VActorRef.getAttribute(AttributeKey<V> key) Returns the attribute value for the given key, or null if not set.<V> VActorRef.getAttribute(AttributeKey<V> key, V defaultValue) Returns the attribute value for the given key, or defaultValue if not set.booleanActorRef.hasAttribute(AttributeKey<?> key) Returns true if an attribute has been set for the given key.<V> voidActorRef.putAttribute(AttributeKey<V> key, V value) Stores a typed attribute value.<V> VActorRef.removeAttribute(AttributeKey<V> key) Removes and returns the attribute value for the given key, or null if not set.