r2dbc / r2dbc-spi

Service Provider Interface for R2DBC Implementations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: What's the use-case for Closable returning a Publisher, not a Mono?

hfhbd opened this issue · comments

Closable returns a Publisher<Void>, but mostly/all current driver implementations just return a Mono<Void>. So what's the use-case to allow multiple close events and not just limit the API to Mono<Void>?