KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > versant > core > server > DataForL2Cache


1
2 /*
3  * Copyright (c) 1998 - 2005 Versant Corporation
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  * Versant Corporation - initial API and implementation
11  */

12 package com.versant.core.server;
13
14 import com.versant.core.common.OID;
15 import com.versant.core.common.State;
16
17 /**
18  * Holds data to be given to the L2 cache at the end of the transaction.
19  * This is used for JDBC when the connection is retained during an opt tx.
20  * The oids and states arrays will always be the same size.
21  */

22 public class DataForL2Cache {
23
24     public OID[] oids;
25     public State[] states;
26     public DataForL2Cache next;
27
28 }
29
30
Popular Tags