Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Sho SHIMIZU
2016-08-30 14:08:28 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c9b73ab7da049b79d433991b250d07a19729f76
7c9b73ab
1 parent
ecfbeb60
Tighten method visibility
Change-Id: I47d46be0c36bf3ee7e4a9bab7f6dd3dfc4d80256
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java
core/net/src/main/java/org/onosproject/net/flow/impl/FlowRuleManager.java
View file @
7c9b73a
...
...
@@ -601,7 +601,7 @@ public class FlowRuleManager
private
Set
<
DeviceId
>
pendingDevices
;
public
FlowOperationsProcessor
(
FlowRuleOperations
ops
)
{
FlowOperationsProcessor
(
FlowRuleOperations
ops
)
{
this
.
stages
=
Lists
.
newArrayList
(
ops
.
stages
());
this
.
context
=
ops
.
callback
();
this
.
fops
=
ops
;
...
...
@@ -654,7 +654,7 @@ public class FlowRuleManager
}
}
public
void
satisfy
(
DeviceId
devId
)
{
void
satisfy
(
DeviceId
devId
)
{
pendingDevices
.
remove
(
devId
);
if
(
pendingDevices
.
isEmpty
())
{
operationsService
.
execute
(
this
);
...
...
@@ -663,7 +663,7 @@ public class FlowRuleManager
public
void
fail
(
DeviceId
devId
,
Set
<?
extends
FlowRule
>
failures
)
{
void
fail
(
DeviceId
devId
,
Set
<?
extends
FlowRule
>
failures
)
{
hasFailed
.
set
(
true
);
pendingDevices
.
remove
(
devId
);
if
(
pendingDevices
.
isEmpty
())
{
...
...
Please
register
or
login
to post a comment