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
Toshio Koide
2014-10-30 10:54:25 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
07df706db10d1431b50ebb1f446fc1e23ee83c78
07df706d
1 parent
a4911315
Add javadocs for LinkResourceStore interface.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletions
core/api/src/main/java/org/onlab/onos/net/resource/LinkResourceStore.java
core/api/src/main/java/org/onlab/onos/net/resource/LinkResourceStore.java
View file @
07df706
...
...
@@ -20,20 +20,52 @@ import java.util.Set;
import
org.onlab.onos.net.Link
;
import
org.onlab.onos.net.intent.IntentId
;
/**
* Manages link resources.
*/
public
interface
LinkResourceStore
{
/**
* Returns free resources for given link.
*
* @param link a target link
* @return free resources for given link
*/
Set
<
ResourceAllocation
>
getFreeResources
(
Link
link
);
/**
* Allocates resources.
*
* @param allocations resources to be allocated
*/
void
allocateResources
(
LinkResourceAllocations
allocations
);
/**
* Releases resources.
*
* @param allocations resources to be released
*/
void
releaseResources
(
LinkResourceAllocations
allocations
);
/**
* Returns resources allocated for an Intent.
*
* @param intentId the target Intent's ID
* @return allocated resources
*/
LinkResourceAllocations
getAllocations
(
IntentId
intentId
);
/**
* Returns resources allocated for a link.
*
* @param link the target link
* @return allocated resources
*/
Iterable
<
LinkResourceAllocations
>
getAllocations
(
Link
link
);
/**
* Returns all allocated resources.
*
* @return allocated resources
*/
Iterable
<
LinkResourceAllocations
>
getAllocations
();
}
...
...
Please
register
or
login
to post a comment