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

com.networknt.tram.command.consumer.ReplyDestination Maven / Gradle / Ivy

package com.networknt.tram.command.consumer;

import com.networknt.config.JsonMapper;

public class ReplyDestination {

  public final String destination;
  public final String partitionKey;

  public ReplyDestination(String destination, String partitionKey) {
    this.partitionKey = partitionKey;
    this.destination = destination;
  }

  @Override
  public String toString() {
    return JsonMapper.toJson(this);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy