Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IORuntime#liveFiberSnapshot #3038

Draft
wants to merge 5 commits into
base: series/3.x
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/shared/src/main/scala/cats/effect/unsafe/IORuntime.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ final class IORuntime private[unsafe] (
val config: IORuntimeConfig
) {

def liveFiberSnapshot(): Unit = liveFiberSnapshot(System.err.println(_))
def liveFiberSnapshot(print: String => Unit): Unit =
fiberMonitor.liveFiberSnapshot(print)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should expose a method that returns a String (collection)? Something that can be called from the IDE/debugger easily.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually I'm not sure how useful that is. I guess a test framework would call this method during its timeout hook on a test.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we don't want to expose this here, we could make it a method in the testkit package. Then only test frameworks could use it.


private[effect] val fiberErrorCbs: StripedHashtable = new StripedHashtable()

/*
Expand Down