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
0f154acf4a01b498f50a04527faac5505a1f5f21
0f154acf
1 parent
2d0258df
Tighten method visibility
Change-Id: I47d46be0c36bf3ee7e4a9bab7f6dd3dfc4d80256
Show 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 @
0f154ac
...
...
@@ -580,7 +580,7 @@ public class FlowRuleManager
private
final
Set
<
DeviceId
>
pendingDevices
=
Sets
.
newConcurrentHashSet
();
public
FlowOperationsProcessor
(
FlowRuleOperations
ops
)
{
FlowOperationsProcessor
(
FlowRuleOperations
ops
)
{
this
.
stages
=
Lists
.
newArrayList
(
ops
.
stages
());
this
.
context
=
ops
.
callback
();
this
.
fops
=
ops
;
...
...
@@ -632,7 +632,7 @@ public class FlowRuleManager
}
}
public
void
satisfy
(
DeviceId
devId
)
{
void
satisfy
(
DeviceId
devId
)
{
pendingDevices
.
remove
(
devId
);
if
(
pendingDevices
.
isEmpty
())
{
operationsService
.
execute
(
this
);
...
...
@@ -641,7 +641,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