-
Notifications
You must be signed in to change notification settings - Fork 987
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEBUG SEGFAULT
- Loading branch information
Showing
8 changed files
with
108 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
lettuce/src/main/java/com/lambdaworks/redis/output/VoidOutput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright (C) 2011 - Will Glozer. All rights reserved. | ||
|
||
package com.lambdaworks.redis.output; | ||
|
||
import java.nio.ByteBuffer; | ||
|
||
import com.lambdaworks.redis.codec.RedisCodec; | ||
import com.lambdaworks.redis.protocol.CommandOutput; | ||
|
||
/** | ||
* Void (empty) output. | ||
* | ||
* @param <K> Key type. | ||
* @param <V> Value type. | ||
* @author Mark Paluch | ||
*/ | ||
public class VoidOutput<K, V> extends CommandOutput<K, V, Void> { | ||
|
||
public VoidOutput(RedisCodec<K, V> codec) { | ||
super(codec, null); | ||
} | ||
|
||
@Override | ||
public void set(ByteBuffer bytes) { | ||
|
||
} | ||
|
||
@Override | ||
public void set(long integer) { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters