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

org.bdware.irp.irplib.crypto.AbstractPacketReceiveBuffer Maven / Gradle / Ivy

package org.bdware.irp.irplib.crypto;

import org.bdware.irp.irplib.exception.EnvelopeResendException;

import java.util.ArrayList;

public abstract class AbstractPacketReceiveBuffer {
    public int requestId;


    public AbstractPacketReceiveBuffer(int requestId){
        this.requestId = requestId;
    }


    public abstract boolean isCompleted();

    public abstract void addMessagePacket(IrpMessagePacket messagePacket) throws EnvelopeResendException;

    public abstract ArrayList getSortedIrpMessagePackets();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy