SYMBOL INDEX (282 symbols across 79 files) FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/entity/MethodInvokeMeta.java class MethodInvokeMeta (line 16) | @Data method getArgs (line 43) | public Object[] getArgs() { method setArgs (line 47) | public void setArgs(Object[] args) { method getInterfaceClass (line 51) | public Class getInterfaceClass() { method setInterfaceClass (line 55) | public void setInterfaceClass(Class interfaceClass) { method getMethodName (line 59) | public String getMethodName() { method setMethodName (line 63) | public void setMethodName(String methodName) { method getParameterTypes (line 67) | public Class[] getParameterTypes() { method setParameterTypes (line 71) | public void setParameterTypes(Class[] parameterTypes) { method getReturnType (line 75) | public Class getReturnType() { method setReturnType (line 79) | public void setReturnType(Class returnType) { FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/entity/NullWritable.java class NullWritable (line 14) | @Data method NullWritable (line 28) | private NullWritable() { method nullWritable (line 36) | public static NullWritable nullWritable() { FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/entity/User.java class User (line 19) | @Data method codeC (line 44) | public byte[] codeC() { method codeC (line 57) | public byte[] codeC(ByteBuffer buffer) { FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/exception/ErrorParamsException.java class ErrorParamsException (line 10) | public class ErrorParamsException extends RuntimeException { method ErrorParamsException (line 13) | public ErrorParamsException() { method ErrorParamsException (line 17) | public ErrorParamsException(String message) { FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/exception/NoUseableChannel.java class NoUseableChannel (line 10) | public class NoUseableChannel extends RuntimeException{ method NoUseableChannel (line 13) | public NoUseableChannel() { method NoUseableChannel (line 17) | public NoUseableChannel(String message) { FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/util/ObjectCodec.java class ObjectCodec (line 15) | public class ObjectCodec extends MessageToMessageCodec { method encode (line 17) | @Override method decode (line 25) | @Override FILE: spring-boot-netty/netty-commons/src/main/java/org/yyx/netty/util/ObjectSerializerUtils.java class ObjectSerializerUtils (line 14) | public class ObjectSerializerUtils { method deSerilizer (line 28) | public static Object deSerilizer(byte[] data) { method serilizer (line 51) | public static byte[] serilizer(Object obj) { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/NettyClientApplication.java class NettyClientApplication (line 10) | @SpringBootApplication method main (line 13) | public static void main(String[] args) { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/action/MainAction.java class MainAction (line 18) | @Component method call (line 36) | public void call() throws InterruptedException { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/client/NettyClient.java class NettyClient (line 18) | public class NettyClient { method NettyClient (line 47) | public NettyClient(int port, String url) { method start (line 56) | public void start() { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/client/NettyClientHandler.java class NettyClientHandler (line 19) | public class NettyClientHandler extends ChannelInitializer { method initChannel (line 21) | @Override FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/client/NettyClientHandlerAdapter.java class NettyClientHandlerAdapter (line 18) | public class NettyClientHandlerAdapter extends ChannelHandlerAdapter { method exceptionCaught (line 25) | @Override method channelActive (line 31) | @Override method channelRead (line 38) | @Override method channelReadComplete (line 48) | @Override method userEventTriggered (line 56) | @Override method close (line 66) | @Override FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/client/NettyClientListener.java class NettyClientListener (line 21) | @Order(0) method run (line 40) | @Override FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/client/RPCProxyFactoryBean.java class RPCProxyFactoryBean (line 23) | public class RPCProxyFactoryBean extends AbstractFactoryBean imp... method getObjectType (line 33) | @Override method createInstance (line 43) | @Override method invoke (line 59) | @Override method setInterfaceClass (line 83) | public void setInterfaceClass(Class interfaceClass) { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/config/NettyConfig.java class NettyConfig (line 14) | @Component FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/config/NettyConfiguration.java class NettyConfiguration (line 15) | @Configuration method initNettyBeanScanner (line 25) | @Bean FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/service/DemoService.java type DemoService (line 15) | public interface DemoService { method division (line 24) | double division(int numberA, int numberB) throws ErrorParamsException; method getUserInfo (line 31) | User getUserInfo(); method print (line 38) | String print(); method sum (line 47) | int sum(int numberA, int numberB); FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/util/ChannelUtil.java class ChannelUtil (line 24) | public class ChannelUtil { method ChannelUtil (line 38) | private ChannelUtil() { method calculateResult (line 47) | public static void calculateResult(String key, Object result) { method getResultKey (line 57) | public static String getResultKey(String key) { method getResult (line 67) | public static Object getResult(String key) { method registerChannel (line 76) | public static void registerChannel(Channel channel) { method remoteCall (line 88) | public static void remoteCall(MethodInvokeMeta methodInvokeMeta, Strin... method remove (line 106) | public static void remove(Channel channel) { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/util/NettyBeanScanner.java class NettyBeanScanner (line 20) | public class NettyBeanScanner implements BeanFactoryPostProcessor { method NettyBeanScanner (line 41) | public NettyBeanScanner(String basePackage, String clientName) { method postProcessBeanFactory (line 53) | @Override FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/util/PackageClassUtils.java class PackageClassUtils (line 16) | public class PackageClassUtils { method getAllFile (line 26) | private static void getAllFile(String s, File file, List class... method getClassReferenceList (line 48) | private static List getClassReferenceList(List classSt... method resolver (line 69) | public static List resolver(String basePackage) { FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/util/RemoteMethodInvokeUtil.java class RemoteMethodInvokeUtil (line 17) | public class RemoteMethodInvokeUtil implements ApplicationContextAware { method processMethod (line 21) | public Object processMethod(MethodInvokeMeta methodInvokeMeta) throws ... method setApplicationContext (line 35) | @Override FILE: spring-boot-netty/netty-demo/netty-client/src/main/java/org/yyx/netty/rpc/util/WrapMethodUtils.java class WrapMethodUtils (line 15) | public class WrapMethodUtils { method readMethod (line 24) | public static MethodInvokeMeta readMethod(Class interfaceClass, Method... FILE: spring-boot-netty/netty-demo/netty-client/src/test/java/org/yyx/netty/client/NettyClientApplicationTests.java class NettyClientApplicationTests (line 8) | @RunWith(SpringRunner.class) method contextLoads (line 12) | @Test FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/NettyServerApplication.java class NettyServerApplication (line 16) | @SpringBootApplication method main (line 22) | public static void main(String[] args) { method run (line 26) | @Override FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/rpc/service/DemoService.java type DemoService (line 13) | public interface DemoService { method division (line 22) | double division(int numberA, int numberB) throws ErrorParamsException; method getUserInfo (line 29) | User getUserInfo(); method print (line 36) | String print(); method sum (line 45) | int sum(int numberA, int numberB); FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/server/adapter/ServerChannelHandlerAdapter.java class ServerChannelHandlerAdapter (line 23) | @Component method exceptionCaught (line 39) | @Override method channelRead (line 52) | @Override method userEventTriggered (line 78) | @Override FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/server/config/NettyServerConfig.java class NettyServerConfig (line 13) | @Component method getPort (line 30) | public int getPort() { method setPort (line 34) | public void setPort(int port) { method getMaxThreads (line 38) | public int getMaxThreads() { method setMaxThreads (line 42) | public void setMaxThreads(int maxThreads) { method getMaxFrameLength (line 46) | public int getMaxFrameLength() { method setMaxFrameLength (line 50) | public void setMaxFrameLength(int maxFrameLength) { FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/server/dispatcher/RequestDispatcher.java class RequestDispatcher (line 26) | @Component method dispatcher (line 44) | public void dispatcher(final ChannelHandlerContext channelHandlerConte... method setApplicationContext (line 109) | @Override FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/server/impl/DemoServiceImpl.java class DemoServiceImpl (line 15) | @Service method division (line 18) | @Override method getUserInfo (line 26) | @Override method print (line 40) | @Override method sum (line 45) | @Override FILE: spring-boot-netty/netty-demo/netty-server/src/main/java/org/yyx/netty/server/listener/NettyServerListener.java class NettyServerListener (line 37) | @Component method close (line 72) | @PreDestroy method start (line 83) | public void start() { FILE: spring-boot-netty/netty-demo/netty-server/src/test/java/org/yyx/netty/NettyServerApplicationTests.java class NettyServerApplicationTests (line 8) | @RunWith(SpringRunner.class) method contextLoads (line 12) | @Test FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/StudyClientApplication.java class StudyClientApplication (line 7) | @SpringBootApplication method main (line 10) | public static void main(String[] args) { method run (line 14) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/codec/msgpack/MsgPackDecoder.java class MsgPackDecoder (line 18) | public class MsgPackDecoder extends MessageToMessageDecoder { method decode (line 26) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/codec/msgpack/MsgPackEncoder.java class MsgPackEncoder (line 18) | public class MsgPackEncoder extends MessageToByteEncoder { method encode (line 27) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/delimiter/EchoClient.java class EchoClient (line 23) | public class EchoClient { method connect (line 25) | public void connect(int port, String host) throws Exception { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/delimiter/EchoClientHandler.java class EchoClientHandler (line 14) | public class EchoClientHandler extends ChannelHandlerAdapter { method exceptionCaught (line 27) | @Override method channelActive (line 33) | @Override method channelRead (line 40) | @Override method channelReadComplete (line 45) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/fixlength/EchoClient.java class EchoClient (line 22) | public class EchoClient { method connect (line 24) | public void connect(int port, String host) throws Exception { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/fixlength/EchoClientHandler.java class EchoClientHandler (line 14) | public class EchoClientHandler extends ChannelHandlerAdapter { method exceptionCaught (line 27) | @Override method channelActive (line 33) | @Override method channelRead (line 40) | @Override method channelReadComplete (line 45) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/megpack/MessagePackClient.java class MessagePackClient (line 21) | public class MessagePackClient { method connect (line 31) | public void connect(int port, String host, int sendNumber) throws Exce... FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/echo/megpack/MessagePackClientHandler.java class MessagePackClientHandler (line 14) | public class MessagePackClientHandler extends ChannelHandlerAdapter { method MessagePackClientHandler (line 25) | public MessagePackClientHandler(int sendNumber) { method exceptionCaught (line 29) | @Override method channelActive (line 35) | @Override method channelRead (line 45) | @Override method channelReadComplete (line 50) | @Override method UserInfo (line 55) | private User[] UserInfo() { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo1/TimeClient.java class TimeClient (line 18) | public class TimeClient { method connect (line 20) | public void connect(int port, String host) throws Exception { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo1/TimeClientHandler.java class TimeClientHandler (line 15) | public class TimeClientHandler extends ChannelHandlerAdapter { method TimeClientHandler (line 32) | public TimeClientHandler() { method exceptionCaught (line 46) | @Override method channelActive (line 60) | @Override method channelRead (line 73) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo2/TimeClient.java class TimeClient (line 18) | public class TimeClient { method connect (line 20) | public void connect(int port, String host) throws Exception { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo2/TimeClientHandler.java class TimeClientHandler (line 15) | public class TimeClientHandler extends ChannelHandlerAdapter { method TimeClientHandler (line 33) | public TimeClientHandler() { method exceptionCaught (line 46) | @Override method channelActive (line 59) | @Override method channelRead (line 78) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo3/TimeClient.java class TimeClient (line 20) | public class TimeClient { method connect (line 22) | public void connect(int port, String host) throws Exception { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/time/demo3/TimeClientHandler.java class TimeClientHandler (line 15) | public class TimeClientHandler extends ChannelHandlerAdapter { method TimeClientHandler (line 33) | public TimeClientHandler() { method exceptionCaught (line 46) | @Override method channelActive (line 59) | @Override method channelRead (line 78) | @Override FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/websocket/WebSocketClient.java class WebSocketClient (line 20) | public class WebSocketClient { method connect (line 22) | public void connect(int port, String host, String userName) throws Exc... FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/websocket/WebSocketClientHandler.java class WebSocketClientHandler (line 22) | public class WebSocketClientHandler extends SimpleChannelInboundHandler<... method WebSocketClientHandler (line 33) | WebSocketClientHandler(WebSocketClientHandshaker webSocketClientHandsh... method handlerAdded (line 37) | @Override method exceptionCaught (line 48) | @Override method channelActive (line 61) | @Override method channelInactive (line 77) | @Override method channelReadComplete (line 92) | @Override method messageReceived (line 97) | @Override method getUserNameInPath (line 142) | private String getUserNameInPath() { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/websocket/WebSocketConstant.java type WebSocketConstant (line 9) | public interface WebSocketConstant { FILE: spring-boot-netty/study-netty/study-client/src/main/java/org/yyx/netty/study/websocket/WebSocketHandlerClient.java class WebSocketHandlerClient (line 18) | public class WebSocketHandlerClient extends ChannelInitializer getUSERS() { method sendMessageToUsers (line 102) | public static void sendMessageToUsers(String message) { method sendMessageToUser (line 116) | public static void sendMessageToUser(String userName, String message) { FILE: spring-boot-netty/study-netty/study-client/src/test/java/org/yyx/netty/study/StudyClientApplicationTests.java class StudyClientApplicationTests (line 11) | @RunWith(SpringRunner.class) method startNettyClient1 (line 25) | @Test method startNettyClient2 (line 32) | @Test method startNettyClient3 (line 39) | @Test method startNettyClient4 (line 46) | @Test method startNettyServer5 (line 53) | @Test method testMessagePackEchoClient (line 60) | @Test method startWebSocketClient (line 67) | @Test method startWebSocketClient2 (line 72) | @Test FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/StudyServerApplication.java class StudyServerApplication (line 7) | @SpringBootApplication method main (line 10) | public static void main(String[] args) { method run (line 14) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/codec/msgpack/MsgPackDecoder.java class MsgPackDecoder (line 18) | public class MsgPackDecoder extends MessageToMessageDecoder { method decode (line 31) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/codec/msgpack/MsgPackEncoder.java class MsgPackEncoder (line 16) | public class MsgPackEncoder extends MessageToByteEncoder { method encode (line 27) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/delimiter/EchoServer.java class EchoServer (line 26) | public class EchoServer { method bind (line 35) | public void bind(int port) throws Exception { FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/delimiter/EchoServerHandler.java class EchoServerHandler (line 15) | public class EchoServerHandler extends ChannelHandlerAdapter { method exceptionCaught (line 28) | @Override method channelRead (line 34) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/fixlength/EchoServer.java class EchoServer (line 24) | public class EchoServer { method bind (line 33) | public void bind(int port) throws Exception { FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/fixlength/EchoServerHandler.java class EchoServerHandler (line 13) | public class EchoServerHandler extends ChannelHandlerAdapter { method exceptionCaught (line 22) | @Override method channelRead (line 28) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/megpack/MessagePackServer.java class MessagePackServer (line 24) | public class MessagePackServer { method bind (line 33) | public void bind(int port) throws Exception { FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/echo/megpack/MessagePackServerHandler.java class MessagePackServerHandler (line 19) | public class MessagePackServerHandler extends ChannelHandlerAdapter { method exceptionCaught (line 28) | @Override method channelActive (line 35) | @Override method channelRead (line 40) | @Override method channelReadComplete (line 48) | @Override FILE: spring-boot-netty/study-netty/study-server/src/main/java/org/yyx/netty/study/time/demo1/ChildChannelHandler.java class ChildChannelHandler (line 14) | public class ChildChannelHandler extends ChannelInitializer getUSERS() { method sendMessageToUsers (line 102) | public static void sendMessageToUsers(String message) { method sendMessageToUser (line 116) | public static void sendMessageToUser(String userName, String message) { FILE: spring-boot-netty/study-netty/study-server/src/test/java/org/yyx/netty/study/CodeCTest.java class CodeCTest (line 22) | public class CodeCTest { method testCodeC (line 31) | @Test method testCodec (line 54) | @Test FILE: spring-boot-netty/study-netty/study-server/src/test/java/org/yyx/netty/study/StudyServerApplicationTests.java class StudyServerApplicationTests (line 10) | @RunWith(SpringRunner.class) method startNettyServer1 (line 17) | @Test method startNettyServer2 (line 24) | @Test method startNettyServer3 (line 31) | @Test method startNettyServer4 (line 38) | @Test method startNettyServer5 (line 45) | @Test method testMessagePackEchoServer (line 52) | @Test method startWebSocketServer (line 59) | @Test