From 42a0df5ee9f2851a23f1b23f3d035b3de63150b7 Mon Sep 17 00:00:00 2001 From: heibaiying <31504331+heibaiying@users.noreply.github.com> Date: Thu, 30 May 2019 10:28:21 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Storm=E7=BC=96=E7=A8=8B=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E8=AF=A6=E8=A7=A3.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/Storm编程模型详解.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Storm编程模型详解.md b/notes/Storm编程模型详解.md index f54f618..ffd76b7 100644 --- a/notes/Storm编程模型详解.md +++ b/notes/Storm编程模型详解.md @@ -26,7 +26,7 @@ ## 二、IComponent接口 -`IComponent`接口定义了Topology中所有组件(spout/bolt)的公共方法,自定义的spout或bolt都必须直接或间接实现这个接口。 +`IComponent`接口定义了Topology中所有组件(spout/bolt)的公共方法,自定义的spout或bolt必须直接或间接实现这个接口。 ```java public interface IComponent extends Serializable {