Giter Site home page Giter Site logo

java-utils's People

Contributors

rovats avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

java-utils's Issues

Add a strict mode for parallel streams

Currently elements collected by each thread are passed to the batch processor without checking the batch size (to save merging the two lists), but if strict mode is enabled, the batch processor should only be called with elements exactly equal to the batch size.

Add distinctByKeyCollector

When dealing with a stream of objects that don't override equals, distinct() and Collectors.toSet() won't work.

But if they have a unique key, a distinctByKeyCollector can be used.

Do not call batchprocessor with empty list

If the stream size is a multiple of the batch size (e.g. stream size = 20, batch size = 10), the finishers calls the batchProcessor with empty list. I'm thinking this may not be necessary? (it's actually causing issue with my batchprocessor as it does not expect empty list)

Adding the empty check may help, but I'm not sure there are other implications of this.

public Function<List<T>, List<T>> finisher() {
        return ts -> {
            if (!ts.isEmpty()) { 
                batchProcessor.accept(ts);
                recordsProcessed += ts.size();
            }
            return Collections.emptyList();
        };
    }

Thanks
Michal

Test the main functionality

Hi, your tests do not test what is most important - chunking. I your implementation would return the input list, tests would pass.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.