Package com.bazoud.elasticsearch.river.git.guava.functions

Examples of com.bazoud.elasticsearch.river.git.guava.functions.RevCommitToIndexCommit


            );

            final BulkRequestBuilder bulk = context.getClient().prepareBulk();
            FluentIterable
                .from(walk)
                .transform(new RevCommitToIndexCommit(context, walk))
                .transform(new Function<IndexCommit, IndexCommit>() {
                    @Override
                    public IndexCommit apply(IndexCommit commit) {
                        try {
                            bulk.add(indexRequest(context.getRiverName())
View Full Code Here

TOP

Related Classes of com.bazoud.elasticsearch.river.git.guava.functions.RevCommitToIndexCommit

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.