-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
top
committed
Dec 2, 2024
1 parent
6b74648
commit 7ee2cd1
Showing
2 changed files
with
69 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package dao; | ||
|
||
import org.apache.zookeeper.data.Stat; | ||
|
||
public class ZkNodePack { | ||
|
||
public final Stat stat; | ||
public final byte[] data; | ||
|
||
public ZkNodePack(Stat stat, byte[] data) { | ||
this.stat = stat; | ||
this.data = data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters