Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit b5543a4

Browse files
Merge pull request #3163 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2 parents a9d2cf0 + 95ccb1e commit b5543a4

File tree

22 files changed

+210
-51
lines changed

22 files changed

+210
-51
lines changed

.vsts-pipelines/builds/ci-internal.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,9 @@ resources:
99
name: aspnet-BuildTools
1010
ref: refs/heads/master
1111

12-
phases:
13-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
12+
jobs:
13+
- template: .azure/templates/project-ci.yml@buildtools
1414
parameters:
15-
agentOs: Windows
16-
beforeBuild:
17-
- task: NodeTool@0
18-
displayName: Use Node 8.x
19-
inputs:
20-
versionSpec: 8.x
21-
22-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
23-
parameters:
24-
agentOs: macOS
25-
beforeBuild:
26-
- task: NodeTool@0
27-
displayName: Use Node 8.x
28-
inputs:
29-
versionSpec: 8.x
30-
31-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
32-
parameters:
33-
agentOs: Linux
3415
beforeBuild:
3516
- task: NodeTool@0
3617
displayName: Use Node 8.x

.vsts-pipelines/builds/ci-public.yml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,9 @@ resources:
1111
name: aspnet/BuildTools
1212
ref: refs/heads/master
1313

14-
phases:
15-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
14+
jobs:
15+
- template: .azure/templates/project-ci.yml@buildtools
1616
parameters:
17-
agentOs: Windows
18-
beforeBuild:
19-
- task: NodeTool@0
20-
displayName: Use Node 8.x
21-
inputs:
22-
versionSpec: 8.x
23-
24-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
25-
parameters:
26-
agentOs: macOS
27-
beforeBuild:
28-
- task: NodeTool@0
29-
displayName: Use Node 8.x
30-
inputs:
31-
versionSpec: 8.x
32-
33-
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
34-
parameters:
35-
agentOs: Linux
3617
beforeBuild:
3718
- task: NodeTool@0
3819
displayName: Use Node 8.x

clients/java/signalr/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ dependencies {
3838
testImplementation 'org.junit.jupiter:junit-jupiter-api'
3939
testCompile 'org.junit.jupiter:junit-jupiter-params'
4040
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
41+
testCompile 'org.slf4j:slf4j-jdk14:1.7.25'
4142
implementation 'com.google.code.gson:gson'
4243
implementation 'com.squareup.okhttp3:okhttp'
4344
implementation 'io.reactivex.rxjava2:rxjava'

clients/java/signalr/src/main/java/com/microsoft/signalr/Action.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes no parameters.
8+
*/
69
@FunctionalInterface
710
public interface Action {
811
void invoke();

clients/java/signalr/src/main/java/com/microsoft/signalr/Action1.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes one parameter.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
*/
611
@FunctionalInterface
712
public interface Action1<T1> {
813
void invoke(T1 param1);

clients/java/signalr/src/main/java/com/microsoft/signalr/Action2.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes two parameters.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
* @param <T2> The type of the second parameter to the callback.
11+
*/
612
@FunctionalInterface
713
public interface Action2<T1, T2> {
814
void invoke(T1 param1, T2 param2);

clients/java/signalr/src/main/java/com/microsoft/signalr/Action3.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes three parameters.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
* @param <T2> The type of the second parameter to the callback.
11+
* @param <T3> The type of the third parameter to the callback.
12+
*/
613
@FunctionalInterface
714
public interface Action3<T1, T2, T3> {
815
void invoke(T1 param1, T2 param2, T3 param3);

clients/java/signalr/src/main/java/com/microsoft/signalr/Action4.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes four parameters.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
* @param <T2> The type of the second parameter to the callback.
11+
* @param <T3> The type of the third parameter to the callback.
12+
* @param <T4> The type of the fourth parameter to the callback.
13+
*/
614
@FunctionalInterface
715
public interface Action4<T1, T2, T3, T4> {
816
void invoke(T1 param1, T2 param2, T3 param3, T4 param4);

clients/java/signalr/src/main/java/com/microsoft/signalr/Action5.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes five parameter.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
* @param <T2> The type of the second parameter to the callback.
11+
* @param <T3> The type of the third parameter to the callback.
12+
* @param <T4> The type of the fourth parameter to the callback.
13+
* @param <T5> The type of the fifth parameter to the callback.
14+
*/
615
@FunctionalInterface
716
public interface Action5<T1, T2, T3, T4, T5> {
817
void invoke(T1 param1, T2 param2, T3 param3, T4 param4, T5 param5);

clients/java/signalr/src/main/java/com/microsoft/signalr/Action6.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33

44
package com.microsoft.signalr;
55

6+
/**
7+
* A callback that takes six parameters.
8+
*
9+
* @param <T1> The type of the first parameter to the callback.
10+
* @param <T2> The type of the second parameter to the callback.
11+
* @param <T3> The type of the third parameter to the callback.
12+
* @param <T4> The type of the fourth parameter to the callback.
13+
* @param <T5> The type of the fifth parameter to the callback.
14+
* @param <T6> The type of the sixth parameter to the callback.
15+
*/
616
@FunctionalInterface
717
public interface Action6<T1, T2, T3, T4, T5, T6> {
818
void invoke(T1 param1, T2 param2, T3 param3, T4 param4, T5 param5, T6 param6);

0 commit comments

Comments
 (0)