This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-10
Channels
- # aleph (3)
- # announcements (1)
- # architecture (16)
- # bangalore-clj (1)
- # beginners (65)
- # biff (5)
- # calva (23)
- # clj-kondo (6)
- # clj-otel (12)
- # clojure-austin (2)
- # clojure-europe (11)
- # clojure-norway (7)
- # clojure-uk (1)
- # clojuredesign-podcast (2)
- # clojurescript (18)
- # conjure (3)
- # datomic (1)
- # deps-new (18)
- # events (1)
- # hyperfiddle (14)
- # java (4)
- # malli (5)
- # off-topic (10)
- # pathom (13)
- # polylith (10)
- # practicalli (1)
- # re-frame (3)
- # reitit (16)
- # releases (1)
- # rum (5)
- # shadow-cljs (17)
It's not directly exposed, but for setting options like that, you'll want to pass a bootstrap-transform
fn. It's called last on the Netty Bootstrap object, so it can adjust the Bootstrap to whatever you want.
E.g., you'd pass in:
:bootstrap-transform (fn [^Bootstrap b] (.option b ChannelOption/TCP_NODELAY true))
That being said, it looks like TCP_NODELAY is true by default in Netty code, for everything except Android.