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

de.datasecs.hydra.shared.distribution.roundrobinlist.Element Maven / Gradle / Ivy

The newest version!
package de.datasecs.hydra.shared.distribution.roundrobinlist;

import de.datasecs.hydra.shared.handler.Session;

/**
 * Created by DataSec on 15.04.2018.
 */
public class Element {

    public int index;

    public Element next, prev;

    public Session node;

    public Element() {
        // For start element
    }

    public Element(Session node) {
        this.node = node;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy