Giter Club home page Giter Club logo

stream-util's Introduction

Maven Central

Stream Utility

The helper class for working with Java 8 streams. It allows to create streams from Optional, from Supplier, from Matcher etc.

How to use it?

To create stream from supplier function:

Stream<Object> stream = StreamUtil.supply(() -> hasData() ? read() : null);

To create files stream (all files in directory and subdirectories):

Stream<Path> files = StreamUtil.files("myDirectory");

To wrap lambdas throws checked exceptions:

void method(int a, String b) throws IOException, InterruptedException { }

boolean isSomething(int a, String b) throws IOException, TimeoutException { return true; }

public void testUnchecked_Throw() throws Exception {
    Stream.of(1)
        .filter(i1 -> StreamUtil.unchecked(() -> isSomething(i1, "1")))
        .forEach(i2 -> StreamUtil.unchecked(() -> method(i2, "2")));
}

To wrap lambdas throws InterruptedException:

StreamUtil.uninterrupted(() -> Thread.sleep(1));

To logging expensive expressions:

log.debug("Debugging of {}", LazyToString.of(() -> "some expensive expression"));

stream-util's People

Contributors

dependabot[bot] avatar megaprog avatar

Stargazers

 avatar

Watchers

 avatar  avatar

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.