| java.lang.Object com.icesoft.faces.async.render.RunnableRender
RunnableRender | class RunnableRender implements Runnable(Code) | | RunnableRender implements Runnable and is designed to wrap up a
Renderable so that it can be used on the
RenderHub s rendering
queue.
author: ICEsoft Technologies, Inc. |
equals | public boolean equals(Object obj)(Code) | | We override the equals method of Object so that we can compare
RunnableRender instances against each other. Since the important pieces
are "wrapped" up, we need to unwrap them to compare them correctly. For
our purposes, we are really interested in whether the associated
com.icesoft.faces.webapp.xmlhttp.PersistentFacesStatePersistentFacesState s are equal so we "unwrap" each RunnableRender and
compare the internal PersistentFacesStates.
Parameters: obj - The RunnableRender to compare to. True if the internal PersistentFacesStates of each RunnableRenderare equal. False otherwise. |
|
|