Class and Description |
---|
org.apache.nifi.util.BooleanHolder
As of release 1.0.1. Please use
AtomicBoolean
Wraps an Boolean value so that it can be declared final and still be accessed from inner classes;
the functionality is similar to that of an AtomicBoolean, but operations on this class
are not atomic. This results in greater performance when the atomicity is not needed. |
org.apache.nifi.util.IntegerHolder
As of release 1.0.1. Please use
AtomicInteger
Wraps an Integer value so that it can be declared final and still be accessed from inner classes;
the functionality is similar to that of an AtomicInteger, but operations on this class
are not atomic. This results in greater performance when the atomicity is not needed. |
org.apache.nifi.util.LongHolder
As of release 1.0.1. Please use
AtomicLong
Wraps a Long value so that it can be declared final and still be accessed from inner classes;
the functionality is similar to that of an AtomicLong, but operations on this class
are not atomic. This results in greater performance when the atomicity is not needed. |
org.apache.nifi.util.ObjectHolder
As of release 0.7.0. Please use
AtomicReference
A bean that holds a single value of type T. |
Copyright © 2016 Apache NiFi Project. All rights reserved.