public AffinityThreadFactoryBuilder setNameFormat()

in src/main/java/com/epam/deltix/thread/affinity/AffinityThreadFactoryBuilder.java [54:58]


    public AffinityThreadFactoryBuilder setNameFormat(String nameFormat) {
        String unused = format(nameFormat, 0); // fail fast if the format is bad or null
        this.nameFormat = nameFormat;
        return this;
    }