Coder Social home page Coder Social logo

knio2's Introduction

KNIO2

Maven Central latest version badge Awesome Kotlin badge License badge

Just some Kotlinx coroutines extensions for java.nio.channels.Asynchronous* classes.

Setup

Published to the Maven Central repository.

Gradle snippet,

repositories {
    mavenCentral()
}

dependencies {
    implementation "io.github.agcom:knio2:0.4.1"
}

Components

  • Suspending extension functions for following classes,

    • AsynchronousByteChannel
    • AsynchronousSocketChannel
    • AsynchronousFileChannel
    • AsynchronousServerSocketChannel

    The functions are named after their original name plus await suffix.

      import io.github.agcom.knio2.*
      import java.nio.ByteBuffer
      import java.nio.channels.AsynchronousSocketChannel
      
      suspend fun main() {
          val socket: AsynchronousSocketChannel = TODO().apply {
              connectAwait(TODO()) // connectAwait
          }
      
          ByteBuffer.allocate(TODO()).let {
              socket.readAwait(it) // readAwait
          }
      
          socket.writeAwait(Charsets.US_ASCII.encode("Hello world")) // writeAwait
      }

Contribution

I add what I need. Make sure you do it too ๐Ÿ˜ƒ.

Status

If you only want Kotlinx coroutines IO, prefer its native libraries instead of Java ports. You can find them on Awesome Kotlin.

This is a temporary project and may deprecate in favor of better asynchronous IO solutions with Kotlinx coroutines. For example, the Kotlinx IO, which is kinda in development now.

knio2's People

Contributors

agcom avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

knio2's Issues

Cancellable or not

Asynchronous channels provide no guarantee nor function to cancel calls. Should this behavior be reflected in coroutines (suspendCancellableCoroutine or cancellableCoroutine)?

Use suspendCancellableCoroutine anyway

To avoid blocking the execution in case of cancellation (although the underlying IO won't cancel).

Also, avoids this boilerplate ๐Ÿ‘‡ to achieve the above goal โ˜๏ธ.

fun main() {
    runBlocking {
        cancel()
        async { // Launch a new coroutine
            sus()
        }.await()
    }
}

suspend fun sus() {
    suspendCoroutine<Unit> { /*Suspend forever*/ }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.