Class HeartbeatImpl
java.lang.Object
org.apache.tapestry5.internal.services.HeartbeatImpl
- All Implemented Interfaces:
Heartbeat
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
begin()
Begins a new Heartbeat.void
Adds a new command to the current Heartbeat.void
end()
Executes all commands since the most recentHeartbeat.begin()
.
-
Constructor Details
-
HeartbeatImpl
public HeartbeatImpl()
-
-
Method Details
-
begin
Description copied from interface:Heartbeat
Begins a new Heartbeat. Heartbeats nest. Every call to begin() should be matched by a call toHeartbeat.end()
. -
defer
Description copied from interface:Heartbeat
Adds a new command to the current Heartbeat. The command will be executed byHeartbeat.end()
. -
end
Description copied from interface:Heartbeat
Executes all commands since the most recentHeartbeat.begin()
.
-