Source Code Cross Referenced for IStoreManager.java in  » Search-Engine » Jofti » com » jofti » core » 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 » Search Engine » Jofti » com.jofti.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.jofti.core;
002:
003:        import java.util.Properties;
004:
005:        import com.jofti.btree.EntrySplitWrapper;
006:        import com.jofti.btree.IPage;
007:        import com.jofti.exception.JoftiException;
008:        import com.jofti.store.StoreWrapper;
009:
010:        /**
011:         * <p>The store manager is responsible for mediating between the store implementations and 
012:         * the the index.
013:         * </p>
014:         * <p>
015:         * After retrieving a page the caller SHOULD ensure they call either store, remove or release after finishing with a page. Failure to do so may well 
016:         * have an impact on the performance of the store in being able to recycle pages.
017:         * </p>
018:         * 
019:         * @author xenephon
020:         * @since Jofti 1.2
021:         */
022:        public interface IStoreManager {
023:
024:            /**
025:             * Initialises the store manager.
026:             * 
027:             * @param properties
028:             * @throws JoftiException
029:             */
030:            public abstract void init(Properties properties)
031:                    throws JoftiException;
032:
033:            public abstract String getName();
034:
035:            public abstract void setName(String name);
036:
037:            /**
038:             * <p>
039:             * Stores the page in the store. Any changes to the storekey are made in the return key object. 
040:             * </p>
041:             * <p>
042:             * </p>
043:             * @param key - containing the locations to store the page under (possibly more than one)
044:             * @param obj - the page to store.
045:             * @return
046:             * @throws JoftiException - thrown if the key cannot be stored.
047:             */
048:            public IStoreKey store(IStoreKey key, IPage obj)
049:                    throws JoftiException;
050:
051:            /**
052:             * Called by the client to notify the manager that they have finished with the page.
053:             *  
054:             * @param key
055:             * @param obj
056:             */
057:            public void releasePage(IStoreKey key, IPage obj);
058:
059:            /**
060:             * Returns the next available storeKey to the caller.
061:             * 
062:             * @return
063:             * @throws JoftiException
064:             */
065:            public IStoreKey getNextKey() throws JoftiException;
066:
067:            /**
068:             * Returns a StoreWrapper object which containes the StoreKey and the IPage the 
069:             * key refers to.
070:             * 
071:             * @param key
072:             * @return
073:             * @throws JoftiException
074:             */
075:            public StoreWrapper retrieve(IStoreKey key) throws JoftiException;
076:
077:            /**
078:             * Removes all entries from the store.
079:             * @throws JoftiException
080:             */
081:            public void removeAll() throws JoftiException;
082:
083:            /**
084:             * Removes the page from the store and frees up the positions specified in the storeKey.
085:             * @param key
086:             * @param page
087:             * @throws JoftiException
088:             */
089:            public void remove(IStoreKey key, IPage page) throws JoftiException;
090:
091:            /**
092:             * Splits an IPage into two IPage objects with a fair distribution of entries. The EntrySplitWrapper 
093:             * contains both the page and the number of entries in the page.
094:             * 
095:             * @param page
096:             * @param entryNumber
097:             * @return
098:             */
099:            public EntrySplitWrapper[] split(IPage page, int entryNumber);
100:
101:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.