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

ClassCastException

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

ClassCastException

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

ClassCastException

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

ClassCastException

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

ClassCastException

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

ClassCastException

when ConfigureIntervalMsec is not an instance of TorOption.