Firebase database - run on different thread
问题 I want to run the events of firebase on different thread. On the last version of firebase I had this code that did it Config firebaseConfig = new Config(); firebaseConfig.setEventTarget(new EventTarget() { ExecutorService executor = Executors.newSingleThreadExecutor(); @Override public void postEvent(Runnable runnable) { executor.execute(runnable); } @Override public void shutdown() { executor.shutdown(); } @Override public void restart() { } }); Firebase.setDefaultConfig(firebaseConfig); How