Package opennlp.tools.lemmatizer
Class ThreadSafeLemmatizerME
java.lang.Object
opennlp.tools.lemmatizer.ThreadSafeLemmatizerME
- All Implemented Interfaces:
AutoCloseable,opennlp.tools.lemmatizer.Lemmatizer,opennlp.tools.ml.Probabilistic
@Deprecated(since="3.0.0")
@ThreadSafe
public class ThreadSafeLemmatizerME
extends Object
implements opennlp.tools.lemmatizer.Lemmatizer, opennlp.tools.ml.Probabilistic, AutoCloseable
Deprecated.
A thread-safe version of the
LemmatizerME. Using it is completely transparent.
You can use it in a single-threaded context as well, it only incurs a minimal overhead.
Note: This class is deprecated and now delegates to a single shared
LemmatizerME instance, which is thread-safe as of OPENNLP-1816.
Calling close() clears the current thread's thread-local state for compatibility.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
ThreadSafeLemmatizerME
Deprecated.Initializes aThreadSafeLemmatizerMEwith the specifiedmodel.- Parameters:
model- A validLemmatizerModel.
-
-
Method Details
-
lemmatize
Deprecated.- Specified by:
lemmatizein interfaceopennlp.tools.lemmatizer.Lemmatizer
-
lemmatize
Deprecated.- Specified by:
lemmatizein interfaceopennlp.tools.lemmatizer.Lemmatizer
-
probs
public double[] probs()Deprecated.- Specified by:
probsin interfaceopennlp.tools.ml.Probabilistic
-
close
public void close()Deprecated.- Specified by:
closein interfaceAutoCloseable
-
LemmatizerMEis itself thread-safe. Use it directly instead.