|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
StateTransferGenerator.java | - | - | - | - |
|
1 | /* | |
2 | * JBoss, the OpenSource J2EE webOS | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | package org.jboss.cache.statetransfer; | |
8 | ||
9 | import org.jboss.cache.Node; | |
10 | ||
11 | import java.io.ObjectOutputStream; | |
12 | ||
13 | public interface StateTransferGenerator | |
14 | { | |
15 | ||
16 | public void generateState(ObjectOutputStream stream, Node rootNode, boolean generateTransient, | |
17 | boolean generatePersistent, boolean suppressErrors) throws Throwable; | |
18 | ||
19 | } |
|