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

mutiny.zero.internal.AlreadyCompletedSubscription Maven / Gradle / Ivy

Go to download

Mutiny Zero is a minimal API for creating reactive-streams compliant publishers

The newest version!
package mutiny.zero.internal;

import java.util.concurrent.Flow;

public class AlreadyCompletedSubscription implements Flow.Subscription {

    @Override
    public void request(long n) {
        // Do nothing
    }

    @Override
    public void cancel() {
        // Do nothing
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy