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

org.piax.gtrans.ov.ring.AckMessage Maven / Gradle / Ivy

The newest version!
/*
 * AckMessage.java - AckMessage implementation of ring overlay.
 * 
 * Copyright (c) 2015 PIAX development team
 *
 * You can redistribute it and/or modify it under either the terms of
 * the AGPLv3 or PIAX binary code license. See the file COPYING
 * included in the PIAX package for more in detail.
 *
 * $Id: MSkipGraph.java 1160 2015-03-15 02:43:20Z teranisi $
 */
package org.piax.gtrans.ov.ring;

import java.util.List;

import org.piax.common.DdllKey;

public class AckMessage extends ResponseMessage {
    private static final long serialVersionUID = 1L;

    public AckMessage(List unavailableKeys) {
        super(unavailableKeys);
    }

    @Override
    public String toString() {
        return "Ack(N/A=" + unavailableKeys + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy