Source Code Cross Referenced for ExecutorFeedingTimerTask.java in  » EJB-Server-geronimo » plugins » org » apache » geronimo » timer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server geronimo » plugins » org.apache.geronimo.timer 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         *  Licensed to the Apache Software Foundation (ASF) under one or more
003:         *  contributor license agreements.  See the NOTICE file distributed with
004:         *  this work for additional information regarding copyright ownership.
005:         *  The ASF licenses this file to You under the Apache License, Version 2.0
006:         *  (the "License"); you may not use this file except in compliance with
007:         *  the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         *  Unless required by applicable law or agreed to in writing, software
012:         *  distributed under the License is distributed on an "AS IS" BASIS,
013:         *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         *  See the License for the specific language governing permissions and
015:         *  limitations under the License.
016:         */package org.apache.geronimo.timer;
017:
018:        import java.util.TimerTask;
019:
020:        import javax.transaction.RollbackException;
021:        import javax.transaction.SystemException;
022:        import javax.transaction.Synchronization;
023:        import javax.transaction.Status;
024:
025:        import org.apache.commons.logging.Log;
026:        import org.apache.commons.logging.LogFactory;
027:
028:        /**
029:         *
030:         *
031:         * @version $Rev: 514870 $ $Date: 2007-03-05 13:18:26 -0800 (Mon, 05 Mar 2007) $
032:         *
033:         * */
034:        public class ExecutorFeedingTimerTask extends TimerTask {
035:
036:            private static final Log log = LogFactory
037:                    .getLog(ExecutorFeedingTimerTask.class);
038:
039:            private final WorkInfo workInfo;
040:            private final ThreadPooledTimer threadPooledTimer;
041:            boolean cancelled = false;
042:
043:            public ExecutorFeedingTimerTask(WorkInfo workInfo,
044:                    ThreadPooledTimer threadPooledTimer) {
045:                this .workInfo = workInfo;
046:                this .threadPooledTimer = threadPooledTimer;
047:            }
048:
049:            public void run() {
050:                try {
051:                    threadPooledTimer.getExecutor().execute(
052:                            workInfo.getExecutorTask());
053:                } catch (Throwable t) {
054:                    log
055:                            .error(
056:                                    "Error occurred during execution of ExpirationMonitor TimerTask",
057:                                    t);
058:                }
059:            }
060:
061:            public boolean cancel() {
062:                threadPooledTimer.removeWorkInfo(workInfo);
063:                try {
064:                    threadPooledTimer
065:                            .registerSynchronization(new CancelSynchronization(
066:                                    this ));
067:                } catch (RollbackException e) {
068:                    log.warn("Exception canceling task", e);
069:                    throw (IllegalStateException) new IllegalStateException(
070:                            "RollbackException when trying to register Cancel Synchronization")
071:                            .initCause(e);
072:                } catch (SystemException e) {
073:                    log.warn("Exception canceling task", e);
074:                    throw (IllegalStateException) new IllegalStateException(
075:                            "SystemException when trying to register Cancel Synchronization")
076:                            .initCause(e);
077:                }
078:                // One cancels the task at this specific time. If the transaction is
079:                // rolled-back, one will recreate it.
080:                cancelled = true;
081:                return super .cancel();
082:            }
083:
084:            public boolean isCancelled() {
085:                return cancelled;
086:            }
087:
088:            private void doCancel() {
089:                try {
090:                    // Impacts the timer storage only if the timer is cancelled
091:                    // in the scope of a committed transactions.
092:                    threadPooledTimer.getWorkerPersistence().cancel(
093:                            workInfo.getId());
094:                } catch (PersistenceException e) {
095:                    log.warn("Exception canceling task", e);
096:                }
097:            }
098:
099:            private void rollbackCancel() {
100:                threadPooledTimer.addWorkInfo(workInfo);
101:
102:                // The transaction has been rolled-back, we need to restore the
103:                // task as if cancel has been called.
104:                if (workInfo.isOneTime()) {
105:                    threadPooledTimer.getTimer().schedule(
106:                            new ExecutorFeedingTimerTask(workInfo,
107:                                    threadPooledTimer), workInfo.getTime());
108:                } else if (workInfo.getAtFixedRate()) {
109:                    threadPooledTimer.getTimer().scheduleAtFixedRate(
110:                            new ExecutorFeedingTimerTask(workInfo,
111:                                    threadPooledTimer), workInfo.getTime(),
112:                            workInfo.getPeriod().longValue());
113:                } else {
114:                    threadPooledTimer.getTimer().schedule(
115:                            new ExecutorFeedingTimerTask(workInfo,
116:                                    threadPooledTimer), workInfo.getTime(),
117:                            workInfo.getPeriod().longValue());
118:                }
119:            }
120:
121:            private static class CancelSynchronization implements 
122:                    Synchronization {
123:
124:                private final ExecutorFeedingTimerTask worker;
125:
126:                public CancelSynchronization(ExecutorFeedingTimerTask worker) {
127:                    this .worker = worker;
128:                }
129:
130:                public void beforeCompletion() {
131:                }
132:
133:                public void afterCompletion(int status) {
134:                    if (status == Status.STATUS_COMMITTED) {
135:                        worker.doCancel();
136:                    } else if (status == Status.STATUS_ROLLEDBACK) {
137:                        worker.rollbackCancel();
138:                    }
139:                }
140:
141:            }
142:
143:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.