Examples of BulkVisitor


Examples of com.bazoud.elasticsearch.river.git.flow.visitors.BulkVisitor

        while (partitions.hasNext()) {
            List<IndexFile> indexFiles = partitions.next();
            Visitors.visit(
                indexFiles,
                new BulkVisitor(context, FILE.name().toLowerCase())
            );
        }

        return context;
    }
View Full Code Here

Examples of com.bazoud.elasticsearch.river.git.flow.visitors.BulkVisitor

        Visitors.visit(
            FluentIterable
                .from(context.getRepository().getTags().entrySet())
                .transform(new TagToIndexTag(context, walk)),
            new BulkVisitor(context, TAG.name().toLowerCase())
        );

        return context;
    }
View Full Code Here

Examples of com.bazoud.elasticsearch.river.git.flow.visitors.BulkVisitor

        ImmutableList<IndexFile> files = builder.build();
        logger.info("Found {} index file", files.size());

        Visitors.visit(
            files,
            new BulkVisitor(context, FILE.name().toLowerCase())
        );

        return context;
    }
View Full Code Here

Examples of com.bazoud.elasticsearch.river.git.flow.visitors.BulkVisitor

        Visitors.visit(
            FluentIterable
                .from(walk)
                .transform(new RevCommitToIndexCommit(context, walk)),
            new BulkVisitor(context, COMMIT.name().toLowerCase())
        );

        return context;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.