Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
N
node-bigstream
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bs
node-bigstream
Commits
12b818e1
Commit
12b818e1
authored
Jan 26, 2017
by
project
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
1adfa0dc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
0 deletions
+25
-0
connection_context.js
lib/conn/connection_context.js
+0
-0
resource_store.js
lib/mems/resource_store.js
+0
-0
bss_handler.js
storage-service/lib/bss_handler.js
+25
-0
storage.js
storage-service/lib/storage.js
+0
-0
No files found.
lib/conn/connection
C
ontext.js
→
lib/conn/connection
_c
ontext.js
View file @
12b818e1
File moved
lib/mems/resource
S
tore.js
→
lib/mems/resource
_s
tore.js
View file @
12b818e1
File moved
storage-service/lib/bss_handler.js
0 → 100644
View file @
12b818e1
var
ctx
=
require
(
'../context'
);
var
BinStream
=
ctx
.
getLib
(
'lib/bss/binarystream_v1_1'
);
var
path
=
require
(
'path'
);
function
BSSHandler
(
prm
)
{
this
.
repos_dir
=
prm
.
repos_dir
;
this
.
name
=
prm
.
name
;
}
BSSHandler
.
prototype
.
filepath
=
function
()
{
return
this
.
repos_dir
+
'/'
+
this
.
name
+
'.bss'
;
}
BSSHandler
.
prototype
.
exists
=
function
()
{
var
fp
=
this
.
filepath
();
return
path
.
existsSync
(
fp
);
}
BSSHandler
.
prototype
.
open
=
function
()
{
}
storage-service/lib/storage.js
0 → 100644
View file @
12b818e1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment