com.dragome.forms.bindings.client.channel.Publisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-form-bindings Show documentation
Show all versions of dragome-form-bindings Show documentation
Dragome SDK module: form bindings
package com.dragome.forms.bindings.client.channel;
/**
* Interface for publishing values to a Channel.
*/
public interface Publisher
{
void publish(T value);
}