netty-chat | 使用Netty实现IMServer,支持Tcp和WebSocket实现。

 by   tonyboxes Java Version: Current License: No License

kandi X-RAY | netty-chat Summary

kandi X-RAY | netty-chat Summary

netty-chat is a Java library. netty-chat has no vulnerabilities, it has build file available and it has low support. However netty-chat has 7 bugs. You can download it from GitHub.

使用Netty实现IMServer,支持Tcp和WebSocket实现。
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              netty-chat has a low active ecosystem.
              It has 471 star(s) with 317 fork(s). There are 78 watchers for this library.
              OutlinedDot
              It had no major release in the last 6 months.
              There are 4 open issues and 4 have been closed. On average issues are closed in 27 days. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of netty-chat is current.

            kandi-Quality Quality

              netty-chat has 7 bugs (0 blocker, 0 critical, 1 major, 6 minor) and 182 code smells.

            kandi-Security Security

              netty-chat has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              netty-chat code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              netty-chat does not have a standard license declared.
              Check the repository for any license declaration and review the terms closely.
              OutlinedDot
              Without a license, all rights are reserved, and you cannot use the library in your applications.

            kandi-Reuse Reuse

              netty-chat releases are not available. You will need to build from source code and install.
              Build file is available. You can build the component from source.
              Installation instructions are not available. Examples and code snippets are available.
              netty-chat saves you 2485 person hours of effort in developing the same functionality from scratch.
              It has 5409 lines of code, 329 functions and 42 files.
              It has medium code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed netty-chat and discovered the below as its top functions. This is intended to give you an instant insight into netty-chat implemented functionality, and help decide if they suit your requirements.
            • Decode packet
            • Returns the length of the packet
            • Gets the length of the header
            • Sets the length of the header
            • Encodes the web socket
            • Gets the sequence id
            • Gets the body of the message
            • Returns username from server
            • Helper method to encode a key
            • Start the server
            • Restart the server
            • List of operations
            • Sends a heartbeat message
            • Close the channel
            • Handle exception
            • Receive message from producer
            • Starts the application
            • Quit a client
            • The main application
            • The default cache manager
            • Performs authentication
            • Receives a message
            • Encode the message body
            • Receive message
            • Initialize channel
            • Decodes the message
            Get all kandi verified functions for this library.

            netty-chat Key Features

            No Key Features are available at this moment for netty-chat.

            netty-chat Examples and Code Snippets

            No Code Snippets are available at this moment for netty-chat.

            Community Discussions

            QUESTION

            Unable to create Channel from class io.netty.channel.sctp.nio.NioSctpChannel
            Asked 2018-Mar-08 at 19:51
            **chatclient.java**
             package com.examplechat;
            import java.io.BufferedReader;
            import java.io.IOException;
            import java.io.InputStreamReader;
            import io.netty.bootstrap.Bootstrap;
            import io.netty.channel.Channel;
            import io.netty.channel.EventLoopGroup;
            import io.netty.channel.nio.NioEventLoopGroup;
            import io.netty.channel.sctp.nio.NioSctpChannel;
            public class ChatClient {   
                public static void main(String[] args) throws InterruptedException, IOException  {
                  new ChatClient("localhost", 8000).run();
                }   
                private final String host;
                private final int port;
            
                public ChatClient(String host, int port) {
                    super();
                    this.host = host;
                    this.port = port;
                }
                public void run() throws InterruptedException, IOException {
              EventLoopGroup group = new NioEventLoopGroup();  
              try {
                  Bootstrap bootstrap = new Bootstrap()
                          .group(group)
                          .channel(NioSctpChannel.class)
                          .handler(new ChatClientInitilizer());       
                  Channel channel = bootstrap.connect(host, port).sync().channel(); 
                  BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                 while(true) {
                     channel.write(in.readLine()+ "\r\n");
                      }     
                }
              finally {
                group.shutdownGracefully();  } 
              } 
                }
            **ChatServer.java**
            package com.examplechat;
            import io.netty.bootstrap.ServerBootstrap;
            import io.netty.channel.EventLoopGroup;
            import io.netty.channel.nio.NioEventLoopGroup;
            import io.netty.channel.socket.nio.NioServerSocketChannel;
            public class ChatServer {
            public static void main(String[] args) throws InterruptedException  {
                    new ChatServer(8000).run();
                }
                private final int port;
                public ChatServer(int port) {
                    super();
                    this.port = port;
                }
                public void run() throws InterruptedException  {
                    EventLoopGroup bossGroup = new NioEventLoopGroup();
                    EventLoopGroup workerGroup = new NioEventLoopGroup();
                    try {
                        ServerBootstrap bootstrap = new ServerBootstrap()
                        .group(bossGroup, workerGroup)
                        .channel(NioServerSocketChannel.class)
                        .childHandler(new ChatServerInitializer());
                    bootstrap.bind(port).sync().channel().closeFuture().sync();
                    }
                    finally {
                        bossGroup.shutdownGracefully();
                        workerGroup.shutdownGracefully();
                    }       
                }}
            
            ...

            ANSWER

            Answered 2018-Mar-08 at 09:52

            I was getting error as

            Unable to create Channel from class class io.netty.channel which is Caused by: java.lang.UnsupportedOperationException: ibsctp.so.1: cannot open shared object file: No such file or directory`

            This error was cleared once I install lksctp-tools by:

            sudo apt-get install lksctp-tools

            Now channel has been registered. But I'm getting a new error that WARNING:

            Failed to initialize a channel. Closing: [id: 0x9e4e05e0] java.lang.ClassCastException: io.netty.channel.sctp.nio.NioSctpChannel cannot be cast to io.netty.channel.socket.SocketChannel

            Source https://stackoverflow.com/questions/49166604

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install netty-chat

            You can download it from GitHub.
            You can use netty-chat like any standard Java library. Please include the the jar files in your classpath. You can also use any IDE and you can run and debug the netty-chat component as you would do with any other Java program. Best practice is to use a build tool that supports dependency management such as Maven or Gradle. For Maven installation, please refer maven.apache.org. For Gradle installation, please refer gradle.org .

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/tonyboxes/netty-chat.git

          • CLI

            gh repo clone tonyboxes/netty-chat

          • sshUrl

            git@github.com:tonyboxes/netty-chat.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Consider Popular Java Libraries

            CS-Notes

            by CyC2018

            JavaGuide

            by Snailclimb

            LeetCodeAnimation

            by MisterBooo

            spring-boot

            by spring-projects

            Try Top Libraries by tonyboxes

            android-boot

            by tonyboxesJava

            italk

            by tonyboxesJava

            GCache

            by tonyboxesJava