Docs: use https links (#28713)
This commit is contained in:
parent
1c58996276
commit
45636e5af4
2 changed files with 3 additions and 3 deletions
|
|
@ -38,10 +38,10 @@ case of sender and receiver JVM crashes.
|
|||
* `AsyncWriteJournal`: A journal stores the sequence of messages sent to a persistent actor. An application can control which messages
|
||||
are journaled and which are received by the persistent actor without being journaled. Journal maintains `highestSequenceNr` that is increased on each message.
|
||||
The storage backend of a journal is pluggable. The persistence extension comes with a "leveldb" journal plugin, which writes to the local filesystem.
|
||||
Replicated journals are available as [Community plugins](http://akka.io/community/).
|
||||
Replicated journals are available as [Community plugins](https://akka.io/community/).
|
||||
* *Snapshot store*: A snapshot store persists snapshots of a persistent actor's state. Snapshots are
|
||||
used for optimizing recovery times. The storage backend of a snapshot store is pluggable.
|
||||
The persistence extension comes with a "local" snapshot storage plugin, which writes to the local filesystem. Replicated snapshot stores are available as [Community plugins](http://akka.io/community/)
|
||||
The persistence extension comes with a "local" snapshot storage plugin, which writes to the local filesystem. Replicated snapshot stores are available as [Community plugins](https://akka.io/community/)
|
||||
* *Event sourcing*. Based on the building blocks described above, Akka persistence provides abstractions for the
|
||||
development of event sourced applications (see section @ref:[Event sourcing](typed/persistence.md#event-sourcing-concepts)).
|
||||
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ Or a length-field can be used to build a framing protocol.
|
|||
There is a bidi implementing this protocol provided by `Framing.simpleFramingProtocol`,
|
||||
see
|
||||
@scala[[ScalaDoc](https://doc.akka.io/api/akka/current/akka/stream/scaladsl/Framing$.html)]
|
||||
@java[[Javadoc](http://doc.akka.io/japi/akka/current/akka/stream/javadsl/Framing.html#simpleFramingProtocol-int-)]
|
||||
@java[[Javadoc](https://doc.akka.io/japi/akka/current/akka/stream/javadsl/Framing.html#simpleFramingProtocol-int-)]
|
||||
for more information.
|
||||
|
||||
@scala[[JsonFraming](https://doc.akka.io/api/akka/current/akka/stream/scaladsl/JsonFraming$.html)]@java[[JsonFraming](https://doc.akka.io/japi/akka/current/akka/stream/javadsl/JsonFraming.html#objectScanner-int-)] separates valid JSON objects from incoming `ByteString` objects:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue