[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - event.py:1.10
Fred L. Drake, Jr.
fred@zope.com
Wed, 25 Jun 2003 11:20:37 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv3237
Modified Files:
event.py
Log Message:
Merged from fdrake-zconfig-in-zope-3-branch:
Add two new events that are use to indicate that certain events have
occurred during startup.
=== Zope3/src/zope/app/interfaces/event.py 1.9 => 1.10 ===
--- Zope3/src/zope/app/interfaces/event.py:1.9 Sat Jun 7 03:23:51 2003
+++ Zope3/src/zope/app/interfaces/event.py Wed Jun 25 11:20:37 2003
@@ -306,3 +306,11 @@
"""An object has been copied"""
fromLocation = Attribute("The old location for the object.")
+
+class IDatabaseOpenedEvent(IEvent):
+ """The main database has been opened."""
+
+ database = Attribute("The main database.")
+
+class IProcessStartingEvent(IEvent):
+ """The application server process is starting."""