Sha256: 5e0a913a2a5d862619a233682c9d9636a464222b8aa9d517e577a99e1bfd27cc

Contents?: true

Size: 1.02 KB

Versions: 6

Compression:

Stored size: 1.02 KB

Contents

standalone {
  default-pinned-dispatcher {
    executor = thread-pool-executor
    type = PinnedDispatcher
    thread-pool-executor.keep-alive-time = 315360000s
    # note that disabling core timeout altogether doesn't work
    # until ticket 2856 is fixed
    thread-pool-executor.allow-core-timeout = off
  }

  akka {
    actor.debug.unhandled = "on"   
    jvm-exit-on-fatal-error=false
    loglevel = "WARNING"

    actor {
      serializers {
        java = "akka.serialization.JavaSerializer"
        bytes = "akka.serialization.ByteArraySerializer"
        myown = "com.game_machine.core.EntitySerializer"
      }

      serialization-bindings {
        "[B" = bytes
        "java.io.Serializable" = java
        "com.dyuproject.protostuff.Message" = myown
        "GameMachine.Messages.ClientMessage" = myown
        "GameMachine.Messages.Entity" = myown
        "GameMachine.Messages.ObjectdbGet" = myown
        "GameMachine.Messages.ObjectdbPut" = myown
        "GameMachine.Messages.ObjectdbUpdate" = myown
      }
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
game_machine-1.0.4 config/standalone.conf
game_machine-1.0.2 config/standalone.conf
game_machine-0.0.11 config/standalone.conf
game_machine-0.0.10 config/standalone.conf
game_machine-0.0.9 config/standalone.conf
game_machine-0.0.8 config/standalone.conf