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;
}
-
-
Method Summary
All Methods Instance Methods Abstract Methods
Modifier and Type
Method and Description
void
execute()
The method that will be called after the save phase of a SAIL expression re evaluation.
-
-
Method Detail
-
execute
void execute()
The method that will be called after the save phase of a SAIL expression re evaluation. This method
takes no parameters. It expects all information required to make the update to be passed in before
being returned to the Appian expression framework.
This method is gauranteed to only be called once. There is no return value, so any error that occurs
while trying to execute the update should result in an Exception being thrown. The Appian expression
framework will catch this exception and log it as an Error in the server log.
Note that an Exception from this method will not stop expression evaluation. If multiple Writer
objects are created during the save phase they will all be executed in the order of creation.
Copyright © 2003-2025 Appian Corporation. All Rights Reserved.