
com.contentful.java.cda.SynchronousExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Contentful's Content Delivery API.
package com.contentful.java.cda;
import java.util.concurrent.Executor;
final class SynchronousExecutor implements Executor {
@Override public void execute(Runnable r) {
r.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy