aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageframework/generic/thread/thread_properties.cpp
blob: 0822c53408b1cc844474e92d298e758a3381d7cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "thread_properties.h"

namespace storage::framework {

ThreadProperties::ThreadProperties(vespalib::duration waitTime,
                                   vespalib::duration maxProcessTime,
                                   int ticksBeforeWait)
    : _maxProcessTime(maxProcessTime),
      _waitTime(waitTime),
      _ticksBeforeWait(ticksBeforeWait)
{
}

}