Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.digitalpetri.netty:netty-channel-fsm

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.digitalpetri.netty:netty-channel-fsm

A state machine that manages async non-blocking access to a Netty Channel.

  • 1.0.0-RC2
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

Netty Channel FSM

Maven Central

A ChannelFsm manages non-blocking access to a Netty Channel instance.

Access to the Channel happens via connect(), disconnect(), and getChannel().

Once connected, the state machine works to keep the Channel connected until disconnect() is called.

Gradle

dependencies {
    compile("com.digitalpetri.netty:netty-channel-fsm:1.0.0")
}

Maven

<dependencies>
    <dependency>
      <groupId>com.digitalpetri.netty</groupId>
      <artifactId>netty-channel-fsm</artifactId>
      <version>1.0.0</version>
    </dependency>
</dependencies>

Persistence

When the persistent setting is true, if the initial connect() fails it will move into a reconnecting state rather than back to a not connected state.

Lazyness

When the lazy settings is true, a connection loss moves the state machine into an idle state, waiting to reconnect until the next connect() or getChannel() call requests a Channel.

FAQs

Package last updated on 20 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc