You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem?
Developers need clarity on which events/APIs are unsupported in Folia and suggestions for more robust async API capabilities.
Describe the solution you'd like:
A full list of unsupported events/apis would be nice
Also more api for async stuff maybe like instead of:
for (Worldworld : Bukkit.getWorlds()){
for(Chunkchunk : world.getChunks()){
// ran on main thread
}
}
could be like this:
Folia.runOnEachRegion(tickRegion -> {
tickRegion.getOwnedChunks().forEach(chunk -> {
// ran on the different tick threads
});
});
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Developers need clarity on which events/APIs are unsupported in Folia and suggestions for more robust async API capabilities.
Describe the solution you'd like:
A full list of unsupported events/apis would be nice
Also more api for async stuff maybe like instead of:
could be like this:
The text was updated successfully, but these errors were encountered: