Tabnine Logo
BaleenAnnotator.doDestroy
Code IndexAdd Tabnine to your IDE (free)

How to use
doDestroy
method
in
uk.gov.dstl.baleen.uima.BaleenAnnotator

Best Java code snippets using uk.gov.dstl.baleen.uima.BaleenAnnotator.doDestroy (Showing top 4 results out of 315)

origin: dstl/baleen

@Override
public void destroy() {
 monitor.startFunction("destroy");
 doDestroy();
 monitor.finishFunction("destroy");
}
origin: uk.gov.dstl.baleen/baleen-uima

@Override
public void destroy() {
 monitor.startFunction("destroy");
 doDestroy();
 monitor.finishFunction("destroy");
}
origin: dstl/baleen

 @Override
 protected void doDestroy() {
  try {
   candidateSupplier.close();
  } catch (Exception e) {
   getMonitor().warn("Error closing resources", e);
  }
  super.doDestroy();
 }
}
origin: uk.gov.dstl.baleen/baleen-entity-linking

 @Override
 protected void doDestroy() {
  try {
   candidateSupplier.close();
  } catch (Exception e) {
   getMonitor().warn("Error closing resources", e);
  }
  super.doDestroy();
 }
}
uk.gov.dstl.baleen.uimaBaleenAnnotatordoDestroy

Javadoc

Called when the analysis engine has finished and is closing down. Any open resources, for example, should be closed at this point.

Popular methods of BaleenAnnotator

  • doInitialize
    Called when the analysis engine is being initialized. Any required resources, for example, should be
  • createMonitor
  • createSupport
  • doProcess
    Called when UIMA wants the annotator to process a document. The passed JCas object contains informat
  • getAction
    Return an AnalysisEngineAction that programmatically describes what the analysis engine is doing, su
  • getContext
  • getSupport
    Get the UIMA support for this annotator.
  • initialize

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now