MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Session.java
1 /*
2  Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; version 2 of the License.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17 
18 package com.mysql.clusterj;
19 
20 import com.mysql.clusterj.query.QueryBuilder;
21 import com.mysql.clusterj.query.QueryDefinition;
22 
26 public interface Session {
27 
32 
37  <T> Query<T> createQuery(QueryDefinition<T> qd);
38 
56  <T> T find(Class<T> cls, Object key);
57 
62  <T> T newInstance(Class<T> cls);
63 
70  <T> T newInstance(Class<T> cls, Object key);
71 
78  <T> T makePersistent(T instance);
79 
89  <T> T load(T instance);
90 
101  Boolean found(Object instance);
102 
107  void persist(Object instance);
108 
113  Iterable<?> makePersistentAll(Iterable<?> instances);
114 
122  public <T> void deletePersistent(Class<T> cls, Object key);
123 
129  void deletePersistent(Object instance);
130 
135  void remove(Object instance);
136 
142  <T> int deletePersistentAll(Class<T> cls);
143 
147  void deletePersistentAll(Iterable<?> instances);
148 
155  void updatePersistent(Object instance);
156 
160  void updatePersistentAll(Iterable<?> instances);
161 
168  <T> T savePersistent(T instance);
169 
173  Iterable<?> savePersistentAll(Iterable<?> instances);
174 
179 
183  void close();
184 
189  boolean isClosed();
190 
195  void flush();
196 
216  void setPartitionKey(Class<?> cls, Object key);
217 
223  void setLockMode(LockMode lockmode);
224 
230  void markModified(Object instance, String fieldName);
231 
232 }