Home > Contents > Index >
IList.flush
Flushes a list object, destroying any backing data store.
Syntax
public void flush()Description
The
flush
method flushes a list object, clears the resultset from the cache and notifies the rest of the cluster member (if any) for same.
Note: Use it carefully with uncached templates as it syncronizes among the cluster member with every flush.Example
The following code creates a list object named
mylist
and then calls theflush
method to destroy it.
// Create a list named mylist ... // Evaluate mylist ... // When finished using mylist, flush it mylist.flush();
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.