Skip to content
/ baseio Public
forked from FireNio/firenio

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

License

Notifications You must be signed in to change notification settings

ffjava/baseio

 
 

Repository files navigation

BaseIO Project

License Maven central Website

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 component extend, known:
    • simple mq service, offer msg, poll msg
    • simple rtp service, for real time voice/video
    • simple invoke limit, for limit inovke times in unit time
  • support protocol extend, known:
  • load test

Quick Start

  • Maven Dependency
  <dependency>
  	<groupId>com.generallycloud</groupId>
  	<artifactId>baseio-all</artifactId>
  	<version>3.1.10-RELEASE</version>
  </dependency>  
  • A simple server:

      public static void main(String[] args) throws Exception {
    
      	IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
    
      		@Override
      		public void accept(SocketSession session, ReadFuture 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();
      }
  • A simple client:

      public static void main(String[] args) throws Exception {
    
      	IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
    
      		@Override
      		public void accept(SocketSession session, ReadFuture 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();
    
      	FixedLengthReadFuture future = new FixedLengthReadFutureImpl(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/aio

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 86.9%
  • JavaScript 12.2%
  • Other 0.9%