@@ -940,12 +940,12 @@ public final CommandObject<KeyValue<String, List<String>>> lmpop(ListDirection d
940940 .add (direction ).add (COUNT ).add (count ), BuilderFactory .KEYED_STRING_LIST );
941941 }
942942
943- public final CommandObject <KeyValue <String , List <String >>> blmpop (long timeout , ListDirection direction , String ... keys ) {
943+ public final CommandObject <KeyValue <String , List <String >>> blmpop (double timeout , ListDirection direction , String ... keys ) {
944944 return new CommandObject <>(commandArguments (BLMPOP ).blocking ().add (timeout )
945945 .add (keys .length ).keys ((Object []) keys ).add (direction ), BuilderFactory .KEYED_STRING_LIST );
946946 }
947947
948- public final CommandObject <KeyValue <String , List <String >>> blmpop (long timeout , ListDirection direction , int count , String ... keys ) {
948+ public final CommandObject <KeyValue <String , List <String >>> blmpop (double timeout , ListDirection direction , int count , String ... keys ) {
949949 return new CommandObject <>(commandArguments (BLMPOP ).blocking ().add (timeout )
950950 .add (keys .length ).keys ((Object []) keys ).add (direction ).add (COUNT ).add (count ),
951951 BuilderFactory .KEYED_STRING_LIST );
@@ -961,12 +961,12 @@ public final CommandObject<KeyValue<byte[], List<byte[]>>> lmpop(ListDirection d
961961 .add (direction ).add (COUNT ).add (count ), BuilderFactory .KEYED_BINARY_LIST );
962962 }
963963
964- public final CommandObject <KeyValue <byte [], List <byte []>>> blmpop (long timeout , ListDirection direction , byte []... keys ) {
964+ public final CommandObject <KeyValue <byte [], List <byte []>>> blmpop (double timeout , ListDirection direction , byte []... keys ) {
965965 return new CommandObject <>(commandArguments (BLMPOP ).blocking ().add (timeout )
966966 .add (keys .length ).keys ((Object []) keys ).add (direction ), BuilderFactory .KEYED_BINARY_LIST );
967967 }
968968
969- public final CommandObject <KeyValue <byte [], List <byte []>>> blmpop (long timeout , ListDirection direction , int count , byte []... keys ) {
969+ public final CommandObject <KeyValue <byte [], List <byte []>>> blmpop (double timeout , ListDirection direction , int count , byte []... keys ) {
970970 return new CommandObject <>(commandArguments (BLMPOP ).blocking ().add (timeout )
971971 .add (keys .length ).keys ((Object []) keys ).add (direction ).add (COUNT ).add (count ),
972972 BuilderFactory .KEYED_BINARY_LIST );
@@ -1943,12 +1943,12 @@ public final CommandObject<KeyValue<String, List<Tuple>>> zmpop(SortedSetOption
19431943 .add (option ).add (COUNT ).add (count ), BuilderFactory .KEYED_TUPLE_LIST );
19441944 }
19451945
1946- public final CommandObject <KeyValue <String , List <Tuple >>> bzmpop (long timeout , SortedSetOption option , String ... keys ) {
1946+ public final CommandObject <KeyValue <String , List <Tuple >>> bzmpop (double timeout , SortedSetOption option , String ... keys ) {
19471947 return new CommandObject <>(commandArguments (BZMPOP ).blocking ().add (timeout ).add (keys .length )
19481948 .keys ((Object []) keys ).add (option ), BuilderFactory .KEYED_TUPLE_LIST );
19491949 }
19501950
1951- public final CommandObject <KeyValue <String , List <Tuple >>> bzmpop (long timeout , SortedSetOption option , int count , String ... keys ) {
1951+ public final CommandObject <KeyValue <String , List <Tuple >>> bzmpop (double timeout , SortedSetOption option , int count , String ... keys ) {
19521952 return new CommandObject <>(commandArguments (BZMPOP ).blocking ().add (timeout ).add (keys .length )
19531953 .keys ((Object []) keys ).add (option ).add (COUNT ).add (count ), BuilderFactory .KEYED_TUPLE_LIST );
19541954 }
@@ -1963,12 +1963,12 @@ public final CommandObject<KeyValue<byte[], List<Tuple>>> zmpop(SortedSetOption
19631963 .add (option ).add (COUNT ).add (count ), BuilderFactory .BINARY_KEYED_TUPLE_LIST );
19641964 }
19651965
1966- public final CommandObject <KeyValue <byte [], List <Tuple >>> bzmpop (long timeout , SortedSetOption option , byte []... keys ) {
1966+ public final CommandObject <KeyValue <byte [], List <Tuple >>> bzmpop (double timeout , SortedSetOption option , byte []... keys ) {
19671967 return new CommandObject <>(commandArguments (BZMPOP ).blocking ().add (timeout ).add (keys .length )
19681968 .keys ((Object []) keys ).add (option ), BuilderFactory .BINARY_KEYED_TUPLE_LIST );
19691969 }
19701970
1971- public final CommandObject <KeyValue <byte [], List <Tuple >>> bzmpop (long timeout , SortedSetOption option , int count , byte []... keys ) {
1971+ public final CommandObject <KeyValue <byte [], List <Tuple >>> bzmpop (double timeout , SortedSetOption option , int count , byte []... keys ) {
19721972 return new CommandObject <>(commandArguments (BZMPOP ).blocking ().add (timeout ).add (keys .length )
19731973 .keys ((Object []) keys ).add (option ).add (COUNT ).add (count ), BuilderFactory .BINARY_KEYED_TUPLE_LIST );
19741974 }
0 commit comments