GetLong() public method

Retrieves a long value from the specified path in the configuration.
public GetLong ( string path, long @default ) : long
path string The path that contains the value to retrieve.
@default long
return long
 public CassandraJournalSettings(Config config)
     : base(config)
 {
     PartitionSize = config.GetLong("partition-size");
     MaxResultSize = config.GetInt("max-result-size");
 }