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

io.latent.storm.rabbitmq.Declarator Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.latent.storm.rabbitmq;

import com.rabbitmq.client.Channel;

import java.io.Serializable;

public interface Declarator extends Serializable {
  void execute(Channel channel);

  public static class NoOp implements Declarator {
    @Override
    public void execute(Channel channel) {}
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy