src/Pure/System/session.scala
changeset 49293 afcccb9bfa3b
parent 49288 2c9272cb4568
child 49416 1053a564dd25
equal deleted inserted replaced
49292:ac42d79ab164 49293:afcccb9bfa3b
    47 
    47 
    48 
    48 
    49   /* tuning parameters */
    49   /* tuning parameters */
    50 
    50 
    51   def output_delay: Time = Time.seconds(0.1)  // prover output (markup, common messages)
    51   def output_delay: Time = Time.seconds(0.1)  // prover output (markup, common messages)
    52 
    52   def message_delay: Time = Time.seconds(0.01)  // incoming prover messages
    53   private val message_delay = Time.seconds(0.01)  // incoming prover messages
    53   def prune_delay: Time = Time.seconds(60.0)  // prune history -- delete old versions
    54   private val prune_delay = Time.seconds(60.0)  // prune history -- delete old versions
    54   def prune_size: Int = 0  // size of retained history
    55   private val prune_size = 0  // size of retained history
    55   def syslog_limit: Int = 100
    56   private val syslog_limit = 100
       
    57 
    56 
    58 
    57 
    59   /* pervasive event buses */
    58   /* pervasive event buses */
    60 
    59 
    61   val global_settings = new Event_Bus[Session.Global_Settings.type]
    60   val global_settings = new Event_Bus[Session.Global_Settings.type]