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

com.nytimes.android.external.cache3.DirectExecutor Maven / Gradle / Ivy

package com.nytimes.android.external.cache3;

import java.util.concurrent.Executor;

import javax.annotation.Nonnull;

enum DirectExecutor implements Executor {
    INSTANCE;
    @Override public void execute(@Nonnull Runnable command) {
      command.run();
    }

    @Override public String toString() {
      return "MoreExecutors.directExecutor()";
    }
  }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy