Skip to content
forked from FireNio/firenio

🐳🐳An [easy of use, simple, not bad of performance] io framework project based on java nio

License

Notifications You must be signed in to change notification settings

narzolliam/baseio

 
 

Repository files navigation

BaseIO Project

Website Maven central License

BaseIO is an io framework which can build network project fast, it based on java nio/aio, it is popular with Developers because of simple and easy of use APIs and high-performance.

Features

  • easy to support reconnect (easy to support heart beat)
  • simple application container
  • easy to supprot load balance, known:
    • virtual node based on hash
    • loop balance node
  • support protocol extend, known:
  • load test

Quick Start

  • Maven Dependency
  <dependency>
  	<groupId>com.generallycloud</groupId>
  	<artifactId>baseio-all</artifactId>
  	<version>3.2.3.Release</version>
  </dependency>  
  • Simple Server:
  public static void main(String[] args) throws Exception {
      IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
          @Override
          public void accept(SocketSession session, Future future) throws Exception {
              future.write("yes server already accept your message:");
              future.write(future.getReadText());
              session.flush(future);
          }
      };
      SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(18300));
      //use java aio
      //SocketChannelContext context = new AioSocketChannelContext(new ServerConfiguration(18300));
      SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
      context.addSessionEventListener(new LoggerSocketSEListener());
      context.setIoEventHandleAdaptor(eventHandleAdaptor);
      context.setProtocolFactory(new FixedLengthProtocolFactory());
      acceptor.bind();
  }
  • Simple Client:
  public static void main(String[] args) throws Exception {
      IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
          @Override
          public void accept(SocketSession session, Future future) throws Exception {
              System.out.println();
              System.out.println("____________________" + future.getReadText());
              System.out.println();
          }
      };
      SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration("localhost", 18300));
      //use java aio
      //SocketChannelContext context = new AioSocketChannelContext(new ServerConfiguration(18300));
      SocketChannelConnector connector = new SocketChannelConnector(context);
      context.setIoEventHandleAdaptor(eventHandleAdaptor);
      context.addSessionEventListener(new LoggerSocketSEListener());
      context.setProtocolFactory(new FixedLengthProtocolFactory());
      SocketSession session = connector.connect();
      FixedLengthFuture future = new FixedLengthFutureImpl(context);
      future.write("hello server!");
      session.flush(future);
      ThreadUtil.sleep(100);
      CloseUtil.close(connector);
  }

more samples {baseio-test}

Sample at website:

License

BaseIO is released under the Apache License 2.0.

To learn more, join this QQ group, more java technique can talk at there.

  • QQ group NO: 540637859
  • Join by click this link: img
  • Scan QR code:
    image

About

🐳🐳An [easy of use, simple, not bad of performance] io framework project based on java nio

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 85.5%
  • JavaScript 13.5%
  • Other 1.0%