Skip to content

Instantly share code, notes, and snippets.

@csadilek
Last active August 29, 2015 13:57
Show Gist options
  • Save csadilek/9373876 to your computer and use it in GitHub Desktop.
Save csadilek/9373876 to your computer and use it in GitHub Desktop.
@Templated
@Page
public class GroceryListView extends Composite {
@PageState
private long activeUserId;
@Sync(query = "groceryListsForUser",
params = { @SyncParam(name = "userId", val = "{activeUserId}") })
private void onDataSyncComplete(SyncResponses<GroceryList> responses) {
Window.alert("Data Sync Complete!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment