ILedHandler.java 271 B

12345678910111213
  1. package com.gzlh.led.handler;
  2. import com.gzlh.led.brand.LedBrandType;
  3. import io.netty.channel.ChannelHandlerContext;
  4. public interface ILedHandler {
  5. LedBrandType brandType();
  6. void sendMsg(int positionLine, String content);
  7. void sendMsg(String content);
  8. }