Source Code Cross Referenced for Slot.java in  » Testing » DbUnit » org » dbunit » util » concurrent » 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 » Testing » DbUnit » org.dbunit.util.concurrent 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:          File: Slot.java
03:
04:          Originally written by Doug Lea and released into the public domain.
05:          This may be used for any purposes whatsoever without acknowledgment.
06:          Thanks for the assistance and support of Sun Microsystems Labs,
07:          and everyone contributing, testing, and using this code.
08:
09:          History:
10:          Date       Who                What
11:          11Jun1998  dl               Create public version
12:          25aug1998  dl               added peek
13:         */
14:
15:        package org.dbunit.util.concurrent;
16:
17:        import org.slf4j.Logger;
18:        import org.slf4j.LoggerFactory;
19:
20:        import java.lang.reflect.InvocationTargetException;
21:
22:        /**
23:         * A one-slot buffer, using semaphores to control access.
24:         * Slots are usually more efficient and controllable than using other
25:         * bounded buffers implementations with capacity of 1.
26:         * <p>
27:         * Among other applications, Slots can be convenient in token-passing
28:         * designs: Here. the Slot holds a some object serving as a token,
29:         * that can be obtained
30:         * and returned by various threads.
31:         *
32:         * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
33:         **/
34:
35:        public class Slot extends SemaphoreControlledChannel {
36:
37:            /**
38:             * Logger for this class
39:             */
40:            private static final Logger logger = LoggerFactory
41:                    .getLogger(Slot.class);
42:
43:            /**
44:             * Create a buffer with the given capacity, using
45:             * the supplied Semaphore class for semaphores.
46:             * @exception NoSuchMethodException If class does not have constructor 
47:             * that intializes permits
48:             * @exception SecurityException if constructor information 
49:             * not accessible
50:             * @exception InstantiationException if semaphore class is abstract
51:             * @exception IllegalAccessException if constructor cannot be called
52:             * @exception InvocationTargetException if semaphore constructor throws an
53:             * exception
54:             **/
55:
56:            public Slot(Class semaphoreClass) throws NoSuchMethodException,
57:                    SecurityException, InstantiationException,
58:                    IllegalAccessException, InvocationTargetException {
59:                super (1, semaphoreClass);
60:            }
61:
62:            /** 
63:             * Create a new Slot using default Semaphore implementations 
64:             **/
65:            public Slot() {
66:                super (1);
67:            }
68:
69:            /** The slot **/
70:            protected Object item_ = null;
71:
72:            /** Set the item in preparation for a take **/
73:            protected synchronized void insert(Object x) {
74:                logger.debug("insert(x=" + x + ") - start");
75:
76:                item_ = x;
77:            }
78:
79:            /** Take item known to exist **/
80:            protected synchronized Object extract() {
81:                logger.debug("extract() - start");
82:
83:                Object x = item_;
84:                item_ = null;
85:                return x;
86:            }
87:
88:            public synchronized Object peek() {
89:                logger.debug("peek() - start");
90:
91:                return item_;
92:            }
93:
94:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.