Package org.jrdf.query.client

Examples of org.jrdf.query.client.CallableQueryClient


    private StreamingAnswerSparqlParser multiAnswerParser;

    public DistributedQueryClientImpl(final Collection<URI> servers, final SparqlAnswerHandler answerHandler) {
        this.queryClients = new LinkedList<CallableQueryClient>();
        for (final URI server : servers) {
            final CallableQueryClient client = new CallableQueryClientImpl(server, answerHandler);
            this.queryClients.add(client);
        }
        this.executor = new ScheduledThreadPoolExecutor(servers.size());
        this.multiAnswerParser = new StreamingAnswerSparqlParserImpl();
    }
View Full Code Here

TOP

Related Classes of org.jrdf.query.client.CallableQueryClient

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.