|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
StateTransferIntegrator.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.ObjectInputStream; | |
12 | ||
13 | public interface StateTransferIntegrator | |
14 | { | |
15 | ||
16 | void integrateState(ObjectInputStream ois, Node target) throws Exception; | |
17 | ||
18 | } |
|