replace unicode arrows

* ⇒, →, ←
* because we don't want to show them in documentation snippets and
  then it's complicated to avoid that when snippets are
  located in src/test/scala in individual modules
* dont replace object `→` in FSM.scala and PersistentFSM.scala
This commit is contained in:
Patrik Nordwall 2019-02-09 15:25:39 +01:00
parent e4d38f92a4
commit 5c96a5f556
1521 changed files with 18846 additions and 18786 deletions

View file

@ -66,7 +66,7 @@ object LargeMessageClusterMultiJvmSpec extends MultiNodeConfig {
override def identifier = 999
override def manifest(o: AnyRef) = "a"
override def toBinary(o: AnyRef) = o match {
case Slow(payload)
case Slow(payload) =>
// simulate slow serialization to not completely overload the machine/network, see issue #24576
Thread.sleep(100)
payload
@ -125,9 +125,9 @@ abstract class LargeMessageClusterSpec extends MultiNodeSpec(LargeMessageCluster
val largeMsg = ("0" * largeMsgSize).getBytes("utf-8")
val largeMsgBurst = 3
val repeat = 15
for (n 1 to repeat) {
for (n <- 1 to repeat) {
val startTime = System.nanoTime()
for (_ 1 to largeMsgBurst) {
for (_ <- 1 to largeMsgBurst) {
largeEcho3.tell(largeMsg, largeEchoProbe.ref)
}
@ -161,7 +161,7 @@ abstract class LargeMessageClusterSpec extends MultiNodeSpec(LargeMessageCluster
val largeMsgSize = 1 * 1000 * 1000
val payload = ("0" * largeMsgSize).getBytes("utf-8")
val largeMsg = if (aeronUdpEnabled) payload else Slow(payload)
(1 to 3).foreach { _
(1 to 3).foreach { _ =>
// this will ping-pong between second and third
largeEcho2.tell(largeMsg, largeEcho3)
}