Package org.vafer.jdeb

Examples of org.vafer.jdeb.DataProducer


    }

    @Override
    public DataProducer apply(final Resource resource) {
        final File source = new File(inputDir, "files" + resource.getTarget());
        return new DataProducer() {
            @Override
            public void produce(DataConsumer receiver) throws IOException {
                try (final InputStream in = new FileInputStream(source)) {
                    receiver.onEachFile(
                            in,
View Full Code Here


                }

                for (Artifact artifact : artifacts) {
                    final File file = artifact.getFile();
                    if (file != null) {
                        dataProducers.add(new DataProducer() {
                            @Override
                            public void produce( final DataConsumer receiver ) {
                                try {
                                    receiver.onEachFile(
                                        new FileInputStream(file),
View Full Code Here

TOP

Related Classes of org.vafer.jdeb.DataProducer

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.