public interface Writer
public class ExampleWriter implements Writer {
private String systemName;
private String value;
public ExampleWriter(String systemName, String value) {
this.systemName = systemName;
this.value = value;
}
Modifier and Type | Method and Description |
---|---|
void |
execute()
The method that will be called after the save phase of a SAIL expression re evaluation.
|
void execute()
Copyright © 2003-2024 Appian Corporation. All Rights Reserved.