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

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

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

import java.util.function.Consumer;

public interface Sink {

  static  Sink of(Consumer consumer) {
    return new SimpleSink<>(consumer);
  }

  default void attachTo(EventStream eventStream) {
    eventStream.subscribe(this::push);
  }

  void push(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy