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

pcap.spi.util.Consumer Maven / Gradle / Ivy

/*
 * Copyright (c) 2020-2021 Pcap Project
 * SPDX-License-Identifier: MIT OR Apache-2.0
 */
package pcap.spi.util;

/**
 * Consumer.
 *
 * @param  the type of input.
 * @since 1.3.1 (incubating)
 */
public interface Consumer {

  /**
   * Accept input.
   *
   * @param t input.
   * @since 1.3.1 (incubating)
   */
  void accept(T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy