All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.thorbenkuck.network.stream.SimpleSink Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.network.stream;

import java.util.function.Consumer;

class SimpleSink implements Sink {

  private final Consumer consumer;

  SimpleSink(Consumer consumer) {
    this.consumer = consumer;
  }

  @Override
  public void push(T t) {
    consumer.accept(t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy