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

org.testcontainers.r2dbc.EmptySubscription Maven / Gradle / Ivy

The newest version!
package org.testcontainers.r2dbc;

import org.reactivestreams.Subscription;

enum EmptySubscription implements Subscription {
    INSTANCE;

    @Override
    public void request(long n) {}

    @Override
    public void cancel() {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy