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

com.github.fluorumlabs.disconnect.polymer.utils.Flush Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.polymer.utils;

import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.polymer.Polymer;
import js.lang.Any;
import org.teavm.jso.JSBody;

/**
 * The interface Flush.
 */
@NpmPackage(
		name = "@polymer/polymer",
		version = Polymer.VERSION
)
@Import(symbols = "flush", module = "@polymer/polymer/lib/utils/flush.js")
public interface Flush extends Any {
	/**
	 * Forces several classes of asynchronously queued tasks to flush:
	 *
	 * 
    *
  • Debouncers added via enqueueDebouncer
  • *
  • ShadyDOM distribution
  • *
*/ @JSBody( script = "flush()" ) static void flush() { throw new UnsupportedOperationException("Available only in JavaScript"); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy