Package com.alibaba.otter.shared.communication.model.canal

Examples of com.alibaba.otter.shared.communication.model.canal.FindCanalEvent


    /**
     * 根据对应的destinantion查询Canal信息
     */
    public Canal findCanal(String destination) {
        FindCanalEvent event = new FindCanalEvent();
        event.setDestination(destination);
        try {
            Object obj = delegate.callManager(event);
            if (obj != null && obj instanceof Canal) {
                return (Canal) obj;
            } else {
View Full Code Here

TOP

Related Classes of com.alibaba.otter.shared.communication.model.canal.FindCanalEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.