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

com.quorum.tessera.recovery.resend.PushBatchRequest Maven / Gradle / Ivy

package com.quorum.tessera.recovery.resend;

import java.util.List;

public interface PushBatchRequest {

  List getEncodedPayloads();

  static PushBatchRequest from(List encodedPayloads) {
    return () -> encodedPayloads;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy