Package com.findwise.hydra.Document

Examples of com.findwise.hydra.Document.Action


  private SolrServer solr;

  @Override
  public void output(LocalDocument doc) throws IOException, SolrServerException, RequiredArgumentMissingException {
    final Action action = doc.getAction();

    if (action == Action.ADD || action == Action.UPDATE) {
      add(doc);
    } else if (action == Action.DELETE) {
      delete(doc);
View Full Code Here


    }
  }

  @Override
  public void output(LocalDocument document) {
    final Action action = document.getAction();
   
    logger.debug(action.toString());
    switch (action) {
    case ADD:
      add(document);
      break;
    case DELETE:
View Full Code Here

  private SolrServer solr;

  @Override
  public void output(LocalDocument doc) throws IOException, SolrServerException, RequiredArgumentMissingException {
    final Action action = doc.getAction();

    if (action == Action.ADD || action == Action.UPDATE) {
      add(doc);
    } else if (action == Action.DELETE) {
      delete(doc);
View Full Code Here

TOP

Related Classes of com.findwise.hydra.Document.Action

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.