Package com.linkedin.parseq.example.composite.classifier.client.impl

Examples of com.linkedin.parseq.example.composite.classifier.client.impl.TruthMapRequest


    private Task<?> truthMapQueryClassifyTask(final String name,
                                              final int remainder,
                                              final Classification classification)
    {
      final Task<Map<Long, Boolean>> svcCall =
          clientRequestTask(new TruthMapRequest("get" + name, remainder, _unclassified));

      final Task<?> classifyResult = truthMapClassifyTask(name, classification, svcCall);

      return seq(svcCall, classifyResult);
    }
View Full Code Here

TOP

Related Classes of com.linkedin.parseq.example.composite.classifier.client.impl.TruthMapRequest

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.