Skip to content

Commit 28cb194

Browse files
authored
Merge pull request #282 from Backendless/BKNDLSS-15115
Bkndlss 15115
2 parents 7ed0bf9 + c55d4e5 commit 28cb194

File tree

3 files changed

+10
-23
lines changed

3 files changed

+10
-23
lines changed

src/com/backendless/servercode/extension/FilesExtender.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,7 @@
2424

2525
import java.util.List;
2626

27-
/**
28-
* Created with IntelliJ IDEA.
29-
* User: ivanlappo
30-
* Date: 5/20/13
31-
* Time: 12:40 PM
32-
* To change this template use File | Settings | File Templates.
33-
*/
27+
3428
public abstract class FilesExtender
3529
{
3630
public FilesExtender()

src/com/backendless/servercode/extension/MessagingExtender.java

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,34 +30,27 @@ public void afterPublish( RunnerContext context, Object Message, PublishOptions
3030
{
3131
}
3232

33-
public void beforeSubscribe( RunnerContext context,
34-
String subscriptionId,
35-
String channel,
36-
SubscriptionOptions options ) throws Exception
33+
public void beforeSubscribe( RunnerContext context, String channel, SubscriptionOptions options ) throws Exception
3734
{
3835
}
3936

40-
public void afterSubscribe( RunnerContext context, String subscriptionId,
41-
String channel,
42-
SubscriptionOptions options,
43-
ExecutionResult<String> subscriberId ) throws Exception
37+
public void afterSubscribe( RunnerContext context, String channel, SubscriptionOptions options, ExecutionResult<String> subscriberId ) throws Exception
4438
{
4539
}
4640

47-
public void beforePoll( RunnerContext context, String subscriptionId ) throws Exception
41+
public void beforePoll( RunnerContext context ) throws Exception
4842
{
4943
}
5044

51-
public void afterPoll( RunnerContext context, String subscriptionId,
52-
ExecutionResult<List<Message>> messages ) throws Exception
45+
public void afterPoll( RunnerContext context, ExecutionResult<List<Message>> messages ) throws Exception
5346
{
5447
}
5548

56-
public void beforeCancel( RunnerContext context, String subscriptionId ) throws Exception
49+
public void beforeCancel( RunnerContext context, String messageId ) throws Exception
5750
{
5851
}
5952

60-
public void afterCancel( RunnerContext context, String subscriptionId, ExecutionResult<MessageStatus> status ) throws Exception
53+
public void afterCancel( RunnerContext context, String messageId, ExecutionResult<MessageStatus> status ) throws Exception
6154
{
6255
}
6356

src/com/backendless/servercode/extension/PersistenceExtender.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void beforeAddRelation( RunnerContext context, String columnName, String
148148

149149
}
150150

151-
public void afterAddRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause )
151+
public void afterAddRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause, ExecutionResult<Integer> result )
152152
{
153153

154154
}
@@ -158,7 +158,7 @@ public void beforeSetRelation( RunnerContext context, String columnName, String
158158

159159
}
160160

161-
public void afterSetRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause )
161+
public void afterSetRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause, ExecutionResult<Integer> result )
162162
{
163163

164164
}
@@ -168,7 +168,7 @@ public void beforeDeleteRelation( RunnerContext context, String columnName, Stri
168168

169169
}
170170

171-
public void afterDeleteRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause )
171+
public void afterDeleteRelation( RunnerContext context, String columnName, String parentObjectId, Object childrenArrayORWhereClause, ExecutionResult<Integer> result )
172172
{
173173

174174
}

0 commit comments

Comments
 (0)