Make Durable Objects support DECENT #675
Open
+276
−297
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
Currently, this crate's support for Durable Objects works, but its developer experience is incredibly bad:
Details with Pictures
5 is reported in Using
#[durable_object]
more than once causes a compile error #4321 makes error messages difficult to understand for those who avoid
use worker::*;
:worker
exports a lot of items from the top-level, so *-import causes serious namespace pollution and many developer will like to avoid itSolution
This PR resolves all of them by re-designing Durable Objects support. See worker-macros/src/durable_object.rs for how new
#[DurableObject]
works internally.usage:
Details with Pictures
#[durable_object]
more than once causes a compile error #432 ).if attribute is missing:
if trait impl is missing:
Additionally, even if we merge this PR immediately, current codes still compile and work, just with "deprecated" warnings, due to some effort for backward compatibility: