The deployment configuration is realized as an internally linked list,
which makes it allocation-free in the common case but retains full
extensibility.
This is useful in at least two scenarios:
- Unit testing actors that communicate to their parent directly
- Testing re-creating (typically persistent) actors with the same name
The single-request-in-actor-example does not consume the response
in where the status code is not OK. Although this is unlikely
to cause backpressure issues as the response is likely to have
a HttpEntity.Strict entity, the example is confusing as it
does not follow the warning about always consuming the response.
remove `new AnyRef`
before:
```
new AnyRef {
class Listener extends Actor {
def receive = {
case m: Jazz => println(s"${self.path.name} is listening to: ${m.artist}")
case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
}
}
```
after:
```
class Listener extends Actor {
def receive = {
case m: Jazz => println(s"${self.path.name} is listening to: ${m.artist}")
case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
}
}
```
* [#21090] Added the improved code for loggingResponsetime and added the link in the docs
* [#21090] Added javadocs for logRequestResponseTime
* [#21090] Removed the compilation error caused by the missing imports
* [#21090] Removed the compilation error caused by type
* [#21090] Improved the identation of the code
* [#21090] Improved the identation of the code
* [#21090] Removed the empty line
* [#21090] Refactored the documentation with clear explanations
added CSV examples
updated docs
EntityStreamingSupport is now an entry point, to all streaming things
both read and write side use it
it's easy to extend as well
Fix #section-buffer by replacing .withAttributes by .addAttributes to avoid overwriting the .async option.
* Update StreamBuffersRateDocTest.java
Fix #section-buffer by replacing .withAttributes by .addAttributes to avoid overwriting the .async option.
* =htp checkSameOrigin shows allowed origins
add HttpOriginRangeDefault into the javadsl and refactor
resolving binary compatibility + add copyright
return back public static final in the HttpOriginRange
* =htp #20535 address bin compat issues in checkSameOrigin PR
* Add more imports to the stream quick start guides.
This makes it easier for people to execute the code samples while they
read through the guide.
* Change line endings to be consistent with other files
For some reason these 2 files had CR+LF line endings.