configure
Configures a TorOption which implements the ConfigureBuildable contract type for TorSetting.BuilderScope of type B, adding the resultant TorSetting to BuilderScope.
e.g.
TorConfig.Builder {
TorOption.ConnectionPadding.configure {
disable()
}
}
Throws
when ConfigureBuildable is not an instance of TorOption.
Configures a TorOption which implements the ConfigureBoolean contract type, adding the resultant TorSetting to BuilderScope.
e.g.
TorConfig.Builder {
TorOption.DisableNetwork.configure(true)
}
Throws
when ConfigureBoolean is not an instance of TorOption.
Configures a TorOption which implements the ConfigureDirectory contract type, adding the resultant TorSetting to BuilderScope.
e.g.
TorConfig.Builder {
TorOption.DataDirectory.configure(directory = "/path/to/data".toFile())
}
Throws
when ConfigureDirectory is not an instance of TorOption.
Configures a TorOption which implements the ConfigureFile contract type, adding the resultant TorSetting to BuilderScope.
e.g.
TorConfig.Builder {
TorOption.GeoIPFile.configure(file = "/path/to/geoip".toFile())
}
Throws
when ConfigureFile is not an instance of TorOption.
Configures a TorOption which implements the ConfigureInterval contract type, adding the resultant TorSetting to BuilderScope.
e.g. (Disabling HeartbeatPeriod)
TorConfig.Builder {
TorOption.HeartbeatPeriod.configure(0, IntervalUnit.SECONDS)
}
Throws
when ConfigureInterval is not an instance of TorOption.
Configures a TorOption which implements the ConfigureIntervalMsec contract type, adding the resultant TorSetting to BuilderScope.
e.g.
TorConfig.Builder {
TorOption.LogTimeGranularity.configure(milliseconds = 2_000)
}
Throws
when ConfigureIntervalMsec is not an instance of TorOption.