rspec/rules/S3048/java/rule.adoc

41 lines
685 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Naming a thread won't make it run faster or more reliably, but it will make it easier to deal with if you need to debug the application.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
Thread t1 = new Thread(new Runnable() {
// ...
};
t1.start(); // Noncompliant; this thread wasn't named
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
Thread t1 = new Thread(new Runnable() {
// ...
};
t1.setName("t1");
t1.start();
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]