Java Doc for ObjectServer.java in  » Database-DBMS » db4o-6.4 » com » db4o » 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 » Database DBMS » db4o 6.4 » com.db4o 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.db4o.ObjectServer

All known Subclasses:   com.db4o.internal.cs.ObjectServerImpl,
ObjectServer
public interface ObjectServer (Code)
the db4o server interface.

- db4o servers can be opened with Db4o.openServer(Stringint) .
- Direct in-memory connections to servers can be made with ObjectServer.openClient()
- TCP connections are available through Db4o.openClient(StringintStringString) .

Before connecting clients over TCP, you have to ObjectServer.grantAccess(String,String) to the username and password combination that you want to use.
See Also:   Db4o.openServer(java.lang.Stringint)
See Also:    Db4o.openServer
See Also:   ExtObjectServer
See Also:    ExtObjectServer for extended functionality




Method Summary
public  booleanclose()
     closes the ObjectServer and writes all cached data.
public  ExtObjectServerext()
     returns an ObjectServer with extended functionality.

Use this method as a convenient accessor to extended methods.
public  voidgrantAccess(String userName, String password)
     grants client access to the specified user with the specified password.
public  ObjectContaineropenClient()
     opens a client against this server.

A client opened with this method operates within the same VM as the server.
public  ObjectContaineropenClient(Configuration config)
    



Method Detail
close
public boolean close()(Code)
closes the ObjectServer and writes all cached data.

true - denotes that the last instance connected to theused database file was closed.



ext
public ExtObjectServer ext()(Code)
returns an ObjectServer with extended functionality.

Use this method as a convenient accessor to extended methods. Every ObjectServer can be casted to an com.db4o.ext.ExtObjectServer .

The functionality is split to two interfaces to allow newcomers to focus on the essential methods.



grantAccess
public void grantAccess(String userName, String password)(Code)
grants client access to the specified user with the specified password.

If the user already exists, the password is changed to the specified password.


Parameters:
  userName - the name of the user
Parameters:
  password - the password to be used



openClient
public ObjectContainer openClient()(Code)
opens a client against this server.

A client opened with this method operates within the same VM as the server. Since an embedded client can use direct communication, without an in-between socket connection, performance will be better than a client opened with Db4o.openClient(java.lang.Stringintjava.lang.Stringjava.lang.String)

Every client has it's own transaction and uses it's own cache for it's own version of all peristent objects.



openClient
public ObjectContainer openClient(Configuration config)(Code)
See ObjectServer.openClient()
Parameters:
  config - a custom Configuration Configuration instance to be obtained via Db4o.newConfiguration an open ObjectContainer ObjectContainer



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.