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

com.googlecode.gwtrpcplus.client.util.MyScheduler Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.googlecode.gwtrpcplus.client.util;

import com.google.gwt.core.client.Scheduler;
import com.google.gwt.core.client.Scheduler.ScheduledCommand;

public interface MyScheduler {

	class DefaultScheduler implements MyScheduler {
		public DefaultScheduler() {
		}

		@Override
		public void scheduleFinaly(ScheduledCommand cmd) {
			Scheduler.get().scheduleFinally(cmd);
		}
	}

	void scheduleFinaly(ScheduledCommand cmd);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy