Interface ComponentResourcesOperation
-
public interface ComponentResourcesOperation
Deprecated.In Tapestry 5.4; useMethodAdvice
and other parts of the new (in 5.3) plastic library.A kind of callback that can easily be injected into a transformed class to perform complex work. These callbacks are often injected into a transformed component class. Bear in mind that such callbacks must be threadsafe, since every instance of such a class will share a single instance of the operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
perform(ComponentResources resources)
Deprecated.Perform some operation that requires the components' resources.
-
-
-
Method Detail
-
perform
void perform(ComponentResources resources)
Deprecated.Perform some operation that requires the components' resources.
-
-