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

kilim.concurrent.PaddedEventSubscriber Maven / Gradle / Ivy

Go to download

Coroutines, continuations, fibers, actors and message passing for the JVM

There is a newer version: 2.0.2-jdk7
Show newest version
// Copyright 2014 nilangshah - offered under the terms of the MIT License

package kilim.concurrent;

import kilim.EventSubscriber;

abstract class EventSubCellPrePad {
    long p0, p1, p2, p3, p4, p5, p6;
}

abstract class EventSubCellValue extends EventSubCellPrePad {
    public EventSubscriber value;
}

public class PaddedEventSubscriber extends EventSubCellValue {
    int i0;
    long p10, p11, p12, p13, p14, p15, p16;

    public PaddedEventSubscriber() {

    }

    public EventSubscriber get() {
        return value;
    }

    public void set(EventSubscriber e) {
        value = e;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy