com.thunisoft.bmap.share.watcher.DictWatcher.java Source code

Java tutorial

Introduction

Here is the source code for com.thunisoft.bmap.share.watcher.DictWatcher.java

Source

/*
 * @(#)DictWatcher.java 201681 ?6:07:22 zookeeperDemo Copyright 2016
 * Thuisoft, Inc. All rights reserved. THUNISOFT PROPRIETARY/CONFIDENTIAL. Use
 * is subject to license terms.
 */
package com.thunisoft.bmap.share.watcher;

import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;

/**
 * ?watcher
 * DictWatcher
 * @author wujch
 * @version 1.0
 *
 */
public class DictWatcher implements Watcher {

    @Override
    public void process(WatchedEvent arg0) {
        System.out.println("Watcher ??");
    }

}