Java org.eclipse.jgit.storage.pack PackConfig fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.storage.pack PackConfig fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.storage.pack PackConfig.

The text is from its open source code.

Field

intDEFAULT_BIG_FILE_THRESHOLD
Default big file threshold:

Constructor

PackConfig(Repository db)
Create a configuration honoring the repository's settings.
PackConfig(Config cfg)
Create a configuration honoring settings in a org.eclipse.jgit.lib.Config .
PackConfig(PackConfig cfg)
Copy an existing configuration to a new instance.
PackConfig()
Create a default configuration.

Method

voidfromConfig(Config rc)
Update properties by setting fields from the configuration.
intgetThreads()
Get the number of threads used during delta compression.
voidsetDeltaCompress(boolean deltaCompress)
Set whether or not the writer will create new deltas on the fly.
voidsetExecutor(Executor executor)
Set the executor to use when using threads.
voidsetThreads(int threads)
Set the number of threads to use for delta compression.