Skip to content

Commit

Permalink
Adding RsStreamSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
mumez committed Jun 6, 2024
1 parent 6dca07e commit 683c557
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
instance creation
existingNamed: streamName on: rediStick
^ (self named: streamName on: rediStick)
createNotExists: false;
yourself
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
instance creation
named: streamName on: rediStick
^ self new
name: streamName;
stick: rediStick;
yourself
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
endpoint
^self stick endpoint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
accessing
name

name ifNil: [ name := '' ].
^ name
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
adding
nextPut: keyValueAssoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
adding
nextPutAll: keyValueAssocs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
stick: aRediStick
stick := aRediStick
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
stick
^ stick
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"pools" : [ ],
"classvars" : [ ],
"instvars" : [
"stick",
"settings",
"name",
"createNotExists"
],
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"commentStamp" : "",
"super" : "SkSettings",
"category" : "RediStick-Stream-Objects",
"classinstvars" : [ ],
"pools" : [ ],
"classvars" : [ ],
"instvars" : [ ],
"name" : "RsStreamSettings",
"type" : "normal"
}

0 comments on commit 683c557

Please sign in to comment.