Skip to content

Releases: NaveenB2004/SocketDataHandler

v1.2.0

13 May 16:03
dfcf3e5
Compare
Choose a tag to compare

Changes:

  • Remove the Lombok dependency
  • Move the preUpdateSeen feature to the SocketDataHandler extend as onPreUpdateReceived
  • Java-Doc updates

Central Repository Minimum JDK version

If you are using project managers like Maven, Gradle etc., please take a look at the Central repository page for this project. You can find most of the import snippets for project managers from there. For Maven:

<dependency>
    <groupId>io.github.naveenb2004</groupId>
    <artifactId>SocketDataHandler</artifactId>
    <version>1.2.0</version>
</dependency>

v1.1.0

06 May 08:33
Compare
Choose a tag to compare

Changes:

  • Improvements in sending/receiving data
  • Improvements in socket disconnections
  • Feature for pre-update handling on sending/receiving data

Central Repository Minimum JDK version

If you are using project managers like Maven, Gradle etc., please take a look at the Central repository page for this project. You can find most of the import snippets for project managers from there. For Maven:

<dependency>
    <groupId>io.github.naveenb2004</groupId>
    <artifactId>SocketDataHandler</artifactId>
    <version>1.1.0</version>
</dependency>

v1.0

19 Apr 21:05
Compare
Choose a tag to compare

Basic send & receive socket operations.
(need to improve some methods to work with streams)

For now, this can only be used with local dependency installed with maven. See here!

mvn package
mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file -Dfile="target/SocketDataHandler-1.0.jar"

Usage in pom.xml

<dependency>
     <groupId>com.naveenb2004</groupId>
     <artifactId>SocketDataHandler</artifactId>
     <version>1.0</version>
</dependency>

Test implementation can be found from here!